:root {
  --color-red: #E53935;
  --color-blue: #2D7DD2;
  --color-navy: #0D1B2A;
  --color-gray: #707B8C;
  --color-light: #F2F4F7;
  --color-white: #FFFFFF;
  --color-border: #E1E8F2;
  --color-line: #EEF3F9;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 34px;
  --shadow-soft: 0 24px 70px rgba(13, 27, 42, 0.10);
  --shadow-card: 0 16px 42px rgba(13, 27, 42, 0.08);
  --shadow-float: 0 28px 80px rgba(13, 27, 42, 0.18);
  --container: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--color-white);
  color: var(--color-navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll-motion,
body.no-scroll-motion * {
  scroll-behavior: auto !important;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(45, 125, 210, 0.32);
  outline-offset: 4px;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section {
  scroll-margin-top: 94px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(225, 232, 242, 0.72);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(22px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(194, 206, 224, 0.9);
  box-shadow: 0 12px 30px rgba(13, 27, 42, 0.07);
}

.header-inner {
  display: grid;
  grid-template-columns: 250px 1fr auto;
  min-height: 84px;
  align-items: center;
  gap: 30px;
}

.brand-logo {
  width: 212px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 3.2vw, 54px);
  color: var(--color-navy);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--color-blue);
  content: "";
  transform: scaleX(0);
  transition: transform 170ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0 28px;
  color: var(--color-navy);
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, #1767E8 0%, #0B55CF 100%);
  color: var(--color-white);
  box-shadow: 0 16px 30px rgba(23, 103, 232, 0.25);
}

.button-primary:hover {
  box-shadow: 0 20px 36px rgba(23, 103, 232, 0.32);
}

.button-link {
  min-height: 54px;
  padding-inline: 8px;
  color: #0B55CF;
  background: transparent;
  box-shadow: none;
}

.button-link span,
.panel-link span,
.text-action span {
  font-size: 1.8em;
  line-height: 0;
}

.header-cta {
  min-height: 50px;
  padding-inline: 24px;
  white-space: nowrap;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #40516B;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--color-red);
  box-shadow: 0 0 0 7px rgba(229, 57, 53, 0.11);
}

.section-heading {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(2.2rem, 3.2vw, 4rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-subtitle {
  max-width: 700px;
  margin: 18px 0 0;
  color: #526276;
  font-size: 1.08rem;
  line-height: 1.72;
}

.section-intro {
  max-width: 850px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-intro .section-subtitle {
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 84px);
  max-height: 860px;
  display: flex;
  align-items: center;
  padding: 108px 0 90px;
  background:
    radial-gradient(circle at 72% 36%, rgba(45, 125, 210, 0.15), transparent 34rem),
    radial-gradient(circle at 34% 24%, rgba(229, 57, 53, 0.07), transparent 26rem),
    linear-gradient(180deg, #FFFFFF 0%, #F7FBFF 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(540px, 0.98fr) minmax(500px, 1.02fr);
  gap: clamp(38px, 4.6vw, 88px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(3.4rem, 4.8vw, 5.2rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 620px;
  margin: 28px 0 0;
  color: #44566E;
  font-size: clamp(1.12rem, 1.4vw, 1.28rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 38px;
}

.trust-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 48px 0 0;
  color: #47576D;
  font-size: 0.95rem;
  font-weight: 750;
}

.trust-note span {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  border: 2px solid var(--color-navy);
  border-radius: 50% 50% 46% 46%;
  opacity: 0.78;
  position: relative;
}

.trust-note span::after {
  position: absolute;
  top: 4px;
  left: 5px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--color-blue);
  border-left: 2px solid var(--color-blue);
  content: "";
  transform: rotate(-45deg);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.laptop-mockup {
  position: absolute;
  top: 58px;
  right: 48px;
  width: min(660px, 100%);
  filter: drop-shadow(0 36px 38px rgba(13, 27, 42, 0.24));
}

.laptop-screen {
  overflow: hidden;
  border: 9px solid #111318;
  border-bottom-width: 14px;
  border-radius: 20px 20px 12px 12px;
  background: #111318;
}

.app-window {
  display: grid;
  grid-template-columns: 124px 1fr;
  min-height: 418px;
  border-radius: 10px;
  overflow: hidden;
  background: #FFFFFF;
}

.app-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px 14px;
  border-right: 1px solid #E8EEF6;
  background: linear-gradient(180deg, #F8FAFD, #FFFFFF);
}

.app-sidebar img {
  width: 86px;
  margin-bottom: 8px;
}

.app-sidebar span {
  border-radius: 7px;
  color: #667386;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 24px;
  padding-inline: 9px;
}

.app-sidebar span::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border: 1px solid currentColor;
  border-radius: 2px;
  content: "";
  opacity: 0.72;
}

.app-sidebar .active {
  background: #EAF3FF;
  color: #1767E8;
}

.app-dashboard {
  padding: 26px 28px 22px;
  background:
    radial-gradient(circle at 92% 6%, rgba(45, 125, 210, 0.07), transparent 13rem),
    #FFFFFF;
}

.dashboard-top,
.directory-toolbar,
.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-top span,
.mini-heading {
  color: #6D7A8D;
  font-size: 0.76rem;
  font-weight: 850;
}

.dashboard-top strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
}

.dashboard-top button,
.directory-toolbar button,
.phone-event button {
  border: 0;
  border-radius: 7px;
  background: #1767E8;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 850;
  padding: 8px 12px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.stat-grid article,
.activity-card,
.chart-card {
  border: 1px solid #E8EEF6;
  border-radius: 11px;
  background: #FFFFFF;
  box-shadow: 0 12px 26px rgba(13, 27, 42, 0.06);
}

.stat-grid article {
  min-height: 116px;
  padding: 18px;
}

.stat-grid span {
  display: block;
  color: #6D7A8D;
  font-size: 0.72rem;
  font-weight: 850;
}

.stat-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--color-navy);
  font-size: 1.75rem;
  line-height: 1;
}

.stat-grid small {
  display: block;
  margin-top: 12px;
  color: #23A36D;
  font-size: 0.72rem;
  font-weight: 850;
}

.dashboard-lower {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 16px;
  margin-top: 16px;
}

.activity-card,
.chart-card {
  min-height: 156px;
  padding: 17px;
}

.activity-card p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  color: #506176;
  font-size: 0.76rem;
  font-weight: 750;
}

.activity-card p span,
.task-row span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1767E8;
}

.chart-card svg {
  width: 100%;
  margin-top: 16px;
}

.chart-card path:first-child {
  fill: none;
  stroke: #E7EEF7;
  stroke-width: 2;
}

.chart-card path:nth-child(2) {
  fill: none;
  stroke: #1767E8;
  stroke-linecap: round;
  stroke-width: 5;
}

.chart-card circle {
  fill: var(--color-red);
}

.task-row {
  display: grid;
  grid-template-columns: 8px auto 8px auto;
  gap: 9px;
  align-items: center;
  margin-top: 15px;
  color: #506176;
  font-size: 0.78rem;
  font-weight: 750;
}

.task-row p {
  margin: 0;
}

.laptop-base {
  width: 116%;
  height: 34px;
  margin-left: -8%;
  border-radius: 0 0 50% 50%;
  background: linear-gradient(180deg, #D9DEE6 0%, #A9B1BD 70%, #757D89 100%);
  box-shadow: inset 0 7px 13px rgba(255, 255, 255, 0.55);
}

.phone-mockup {
  position: absolute;
  right: 0;
  bottom: 34px;
  width: 178px;
  min-height: 340px;
  border: 7px solid #111318;
  border-radius: 34px;
  background: #FFFFFF;
  box-shadow: var(--shadow-float);
  padding: 15px 14px 16px;
  z-index: 3;
}

.phone-status {
  color: #0B1628;
  font-size: 0.62rem;
  font-weight: 900;
}

.phone-status span:last-child {
  width: 39px;
  height: 5px;
  border-radius: 999px;
  background: #0B1628;
}

.phone-mockup strong {
  display: block;
  margin-top: 18px;
  font-size: 0.92rem;
  line-height: 1.22;
}

.phone-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin: 20px 0;
}

.phone-icons span {
  aspect-ratio: 1;
  border-radius: 8px;
  background: #EAF3FF;
  position: relative;
}

.phone-icons span::after {
  position: absolute;
  inset: 9px;
  border-radius: 3px;
  background: #1767E8;
  content: "";
}

.phone-event,
.phone-message {
  border-radius: 12px;
  background: #F7FAFE;
  padding: 12px;
}

.phone-event small,
.phone-message small {
  display: block;
  color: #6D7A8D;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 850;
}

.phone-event b,
.phone-message b {
  display: block;
  margin-top: 5px;
  font-size: 0.75rem;
}

.phone-event em {
  display: block;
  margin-top: 3px;
  color: #4D5E73;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 750;
}

.phone-event button {
  width: 100%;
  margin-top: 10px;
  padding-block: 7px;
}

.phone-message {
  margin-top: 10px;
}

.feature-band {
  padding: 70px 0 80px;
  background: linear-gradient(180deg, #F7FBFF 0%, #F2F7FC 100%);
}

.feature-panel {
  border: 1px solid rgba(225, 232, 242, 0.86);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 55px rgba(13, 27, 42, 0.06);
  padding: 42px 48px 44px;
}

.feature-panel .section-intro {
  margin-bottom: 36px;
}

.feature-panel .section-heading {
  font-size: clamp(1.85rem, 2.3vw, 2.4rem);
}

.feature-panel .section-subtitle {
  max-width: 640px;
  font-size: 1rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.feature-list article {
  min-width: 0;
  text-align: center;
}

.feature-icon,
.pillar-icon {
  display: inline-grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: #EAF3FF;
  color: #1767E8;
  position: relative;
}

.feature-list h3 {
  margin: 16px 0 8px;
  font-size: 1rem;
  line-height: 1.2;
}

.feature-list p {
  margin: 0;
  color: #5B6B80;
  font-size: 0.89rem;
  line-height: 1.45;
}

.feature-icon::before,
.feature-icon::after,
.pillar-icon::before,
.pillar-icon::after {
  position: absolute;
  content: "";
}

.people-icon::before {
  top: 15px;
  left: 18px;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.people-icon::after {
  right: 15px;
  bottom: 15px;
  left: 15px;
  height: 13px;
  border: 2px solid currentColor;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom: 0;
}

.heart-icon::before {
  top: 17px;
  left: 17px;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}

.calendar-icon::before {
  inset: 16px 15px 14px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.calendar-icon::after {
  top: 23px;
  right: 17px;
  left: 17px;
  height: 2px;
  background: currentColor;
}

.check-icon::before {
  top: 18px;
  left: 17px;
  width: 21px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.check-icon::after {
  top: 24px;
  left: 23px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}

.message-icon::before {
  inset: 17px 15px 18px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.message-icon::after {
  left: 22px;
  bottom: 16px;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.chart-icon::before {
  left: 17px;
  bottom: 16px;
  width: 23px;
  height: 20px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.chart-icon::after {
  left: 22px;
  bottom: 20px;
  width: 18px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: skewY(-22deg);
}

.panel-link,
.text-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  color: #0B55CF;
  font-weight: 850;
}

.panel-link {
  width: 100%;
}

.experience-section {
  padding: 80px 0 90px;
  background: #F2F7FC;
}

.experience-panel {
  display: grid;
  grid-template-columns: 390px 1fr;
  min-height: 475px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 31%, rgba(255, 255, 255, 0.68) 31% 100%),
    radial-gradient(circle at 58% 14%, rgba(45, 125, 210, 0.09), transparent 20rem),
    linear-gradient(135deg, #FFFFFF 0%, #F7EDE2 100%);
  box-shadow: var(--shadow-card);
}

.experience-copy {
  align-self: center;
  padding: 56px 44px;
}

.experience-copy .section-heading {
  max-width: 330px;
  font-size: clamp(2.35rem, 3.1vw, 3.1rem);
}

.experience-copy .section-subtitle {
  max-width: 330px;
  font-size: 1rem;
  line-height: 1.68;
}

.desk-scene {
  position: relative;
  min-height: 475px;
  overflow: hidden;
}

.desk-scene::before {
  position: absolute;
  right: -8%;
  bottom: -28%;
  left: 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(226, 210, 191, 0.42), rgba(214, 190, 158, 0.34));
  content: "";
}

.directory-laptop {
  position: absolute;
  left: 8%;
  bottom: 54px;
  width: min(650px, 78%);
  filter: drop-shadow(0 30px 30px rgba(13, 27, 42, 0.22));
}

.directory-screen {
  display: grid;
  grid-template-columns: 110px 1fr;
  min-height: 315px;
  overflow: hidden;
  border: 8px solid #17191F;
  border-radius: 17px 17px 8px 8px;
  background: #FFFFFF;
}

.directory-screen aside {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 16px 12px;
  border-right: 1px solid #E8EEF6;
  background: #F8FAFD;
}

.directory-screen aside img {
  width: 78px;
  margin-bottom: 10px;
}

.directory-screen aside span {
  width: 70px;
  height: 8px;
  border-radius: 999px;
  background: #DCE6F3;
}

.directory-screen aside span:first-of-type {
  background: rgba(45, 125, 210, 0.48);
}

.directory-ui {
  padding: 25px 24px;
}

.directory-toolbar strong {
  font-size: 1rem;
}

.search-line {
  height: 31px;
  margin: 18px 0 14px;
  border: 1px solid #E3EAF3;
  border-radius: 7px;
  background: linear-gradient(90deg, #F7FAFE 0 42%, #FFFFFF 42%);
}

.person-row {
  display: grid;
  grid-template-columns: 31px 1fr 1.3fr 0.95fr;
  gap: 10px;
  align-items: center;
  min-height: 45px;
  border-bottom: 1px solid #EEF3F9;
  color: #47576D;
  font-size: 0.72rem;
}

.person-row span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.95) 0 16%, transparent 17%),
    linear-gradient(135deg, rgba(45, 125, 210, 0.86), rgba(229, 57, 53, 0.72));
}

.person-row b {
  color: var(--color-navy);
}

.person-row em {
  font-style: normal;
}

.directory-base {
  width: 112%;
  height: 25px;
  margin-left: -6%;
  border-radius: 0 0 48% 48%;
  background: linear-gradient(180deg, #D9DEE6, #8C95A2);
}

.brand-mug {
  position: absolute;
  right: 7%;
  bottom: 66px;
  width: 138px;
  height: 118px;
  border-radius: 4px 4px 32px 32px;
  background: #FFFFFF;
  box-shadow: 0 18px 35px rgba(13, 27, 42, 0.14);
}

.brand-mug::after {
  position: absolute;
  right: -37px;
  top: 31px;
  width: 41px;
  height: 44px;
  border: 12px solid #FFFFFF;
  border-left: 0;
  border-radius: 0 28px 28px 0;
  content: "";
}

.brand-mug img {
  position: absolute;
  right: 16px;
  bottom: 32px;
  width: 96px;
}

.security-section {
  padding: 80px 0;
  background:
    radial-gradient(circle at 20% 100%, rgba(45, 125, 210, 0.10), transparent 27rem),
    linear-gradient(180deg, #FFFFFF 0%, #F5FAFF 100%);
}

.security-section .section-intro {
  margin-bottom: 44px;
}

.security-section .section-heading {
  font-size: clamp(2rem, 2.9vw, 3.05rem);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 5vw, 78px);
  max-width: 1080px;
  margin-inline: auto;
}

.pillar {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  align-items: start;
}

.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #EAF3FF;
}

.pillar h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.pillar p {
  margin: 0;
  color: #526276;
  font-size: 0.95rem;
  line-height: 1.55;
}

.shield::before {
  inset: 15px 18px 14px;
  border: 2px solid currentColor;
  border-radius: 14px 14px 18px 18px;
  clip-path: polygon(50% 0, 100% 22%, 88% 70%, 50% 100%, 12% 70%, 0 22%);
}

.shield::after {
  top: 29px;
  left: 26px;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}

.lock::before {
  left: 20px;
  bottom: 17px;
  width: 24px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.lock::after {
  top: 15px;
  left: 24px;
  width: 16px;
  height: 18px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.cloud::before {
  left: 17px;
  top: 28px;
  width: 30px;
  height: 15px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.cloud::after {
  top: 20px;
  left: 19px;
  width: 27px;
  height: 21px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.migration-section {
  padding: 80px 0 90px;
  background: #FFFFFF;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.steps::before {
  position: absolute;
  top: 48px;
  right: 15%;
  left: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(45, 125, 210, 0.25), transparent);
  content: "";
}

.step {
  position: relative;
  z-index: 1;
  min-height: 230px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #FFFFFF;
  box-shadow: var(--shadow-card);
  padding: 30px;
}

.step span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1767E8;
  color: #FFFFFF;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(23, 103, 232, 0.23);
}

.step h3 {
  margin: 24px 0 9px;
  font-size: 1.25rem;
}

.step p {
  margin: 0;
  color: #526276;
}

.early-access-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at 25% 50%, rgba(45, 125, 210, 0.14), transparent 32rem),
    linear-gradient(135deg, #F6FAFF 0%, #FFFFFF 72%);
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 0.8fr);
  gap: clamp(58px, 8vw, 118px);
  align-items: center;
}

.access-copy {
  padding-left: clamp(0px, 5vw, 64px);
}

.access-copy .section-heading {
  max-width: 530px;
  font-size: clamp(2.35rem, 3.6vw, 4.2rem);
}

.access-copy .section-subtitle {
  max-width: 520px;
}

.access-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(225, 232, 242, 0.92);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  padding: 38px;
}

.access-form h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: #4E5F73;
  font-size: 0.86rem;
  font-weight: 800;
}

label em {
  color: var(--color-gray);
  font-style: normal;
  font-weight: 650;
}

input {
  width: 100%;
  min-height: 50px;
  border: 1px solid #DDE5EF;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  color: var(--color-navy);
  padding: 0 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus {
  border-color: rgba(45, 125, 210, 0.68);
  box-shadow: 0 0 0 4px rgba(45, 125, 210, 0.13);
  outline: 0;
}

.access-form .button {
  width: 100%;
  margin-top: 4px;
  border: 0;
  border-radius: var(--radius-sm);
}

.privacy-note,
.form-success {
  margin: 0;
  color: #5B6B80;
  font-size: 0.9rem;
  text-align: center;
}

.privacy-note span {
  display: inline-block;
  width: 12px;
  height: 13px;
  margin-right: 6px;
  border: 2px solid currentColor;
  border-radius: 3px;
  vertical-align: -2px;
}

.form-success {
  border-radius: var(--radius-sm);
  background: rgba(45, 125, 210, 0.10);
  color: var(--color-navy);
  font-weight: 850;
  padding: 12px;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  background: #FBFCFE;
  padding: 58px 0 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.6fr) repeat(3, minmax(130px, 0.72fr)) minmax(250px, 1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.footer-brand img {
  width: 196px;
}

.footer-brand p {
  max-width: 330px;
  margin: 20px 0 0;
  color: #40516B;
  font-weight: 700;
}

.site-footer nav,
.footer-newsletter {
  display: grid;
  gap: 11px;
}

.site-footer h2,
.footer-newsletter h2 {
  margin: 0 0 7px;
  color: var(--color-navy);
  font-size: 0.92rem;
}

.site-footer a,
.footer-newsletter p {
  margin: 0;
  color: #5F6F82;
  font-size: 0.92rem;
  font-weight: 650;
}

.site-footer a:hover {
  color: #0B55CF;
}

.footer-newsletter {
  position: relative;
  padding-left: 30px;
  border-left: 1px solid var(--color-border);
}

.footer-newsletter label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.footer-newsletter input {
  min-height: 48px;
  padding-right: 58px;
}

.footer-newsletter button {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: var(--radius-sm);
  background: #0B55CF;
  color: #FFFFFF;
  font-size: 2rem;
  line-height: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 46px;
  border-top: 1px solid var(--color-border);
  padding-top: 22px;
  color: #6B788A;
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

.policy-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 18%, rgba(45, 125, 210, 0.13), transparent 30%),
    linear-gradient(180deg, #FFFFFF, #F7FAFE);
}

.policy-shell {
  max-width: 820px;
}

.policy-logo img {
  width: 180px;
  margin-bottom: 54px;
}

.policy-card {
  margin-top: 36px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  padding: clamp(24px, 4vw, 36px);
}

.policy-card h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.policy-card p {
  margin: 0 0 24px;
  color: var(--color-gray);
}

@media (min-width: 1600px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(640px, 1.12fr);
  }

  .laptop-mockup {
    right: 58px;
    width: 720px;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .brand-logo {
    width: 188px;
  }

  .hero {
    max-height: none;
  }

  .hero-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .access-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 590px;
  }

  .laptop-mockup {
    left: 0;
    right: auto;
  }

  .phone-mockup {
    right: 8%;
  }

  .feature-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 24px;
  }

  .experience-panel {
    grid-template-columns: 340px 1fr;
  }

  .footer-main {
    grid-template-columns: 1.2fr repeat(3, 0.7fr);
  }

  .footer-newsletter {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: 0;
    max-width: 420px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 78px;
    row-gap: 8px;
  }

  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .header-cta {
    min-height: 44px;
    padding-inline: 18px;
  }

  .hero {
    min-height: 0;
    padding: 72px 0 76px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 9vw, 4.8rem);
  }

  .app-window {
    grid-template-columns: 100px 1fr;
  }

  .app-dashboard {
    padding: 22px;
  }

  .stat-grid,
  .dashboard-lower {
    grid-template-columns: 1fr;
  }

  .task-row {
    grid-template-columns: 8px auto;
  }

  .feature-panel {
    padding: 36px 28px 38px;
  }

  .experience-panel {
    grid-template-columns: 1fr;
  }

  .experience-copy {
    padding: 42px 34px 20px;
  }

  .desk-scene {
    min-height: 430px;
  }

  .directory-laptop {
    width: min(620px, 82%);
  }

  .brand-mug {
    right: 4%;
    width: 112px;
    height: 96px;
  }

  .pillar-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-logo {
    width: 142px;
  }

  .header-cta {
    padding-inline: 13px;
    font-size: 0.84rem;
  }

  .site-nav {
    gap: 18px;
    font-size: 0.88rem;
  }

  .button {
    width: 100%;
  }

  .button-link {
    width: auto;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 3.65rem);
  }

  .hero-subtitle,
  .section-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    gap: 12px;
  }

  .trust-note {
    align-items: flex-start;
    margin-top: 34px;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 0;
  }

  .laptop-mockup,
  .phone-mockup {
    position: relative;
  }

  .laptop-mockup {
    top: auto;
    width: 100%;
    filter: drop-shadow(0 20px 24px rgba(13, 27, 42, 0.18));
  }

  .laptop-screen {
    border-width: 6px;
    border-bottom-width: 10px;
    border-radius: 16px 16px 9px 9px;
  }

  .app-window {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .app-sidebar {
    display: none;
  }

  .app-dashboard {
    padding: 16px;
  }

  .dashboard-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-top button {
    display: none;
  }

  .stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .stat-grid article {
    min-height: 82px;
    padding: 10px 8px;
  }

  .stat-grid span {
    font-size: 0.58rem;
  }

  .stat-grid strong {
    margin-top: 8px;
    font-size: 1.08rem;
  }

  .stat-grid small {
    display: none;
  }

  .dashboard-lower,
  .task-row {
    display: none;
  }

  .phone-mockup {
    right: auto;
    bottom: auto;
    width: min(218px, 74%);
    min-height: 318px;
    margin: -20px 0 0 auto;
  }

  .feature-band,
  .experience-section,
  .security-section,
  .migration-section,
  .early-access-section {
    padding-block: 64px;
  }

  .feature-panel {
    border-radius: 22px;
    padding: 34px 22px;
  }

  .feature-list,
  .form-row,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .feature-list {
    gap: 28px;
  }

  .section-intro {
    text-align: left;
  }

  .section-intro .section-subtitle {
    margin-inline: 0;
  }

  .panel-link {
    justify-content: flex-start;
  }

  .experience-copy {
    padding: 34px 24px 10px;
  }

  .desk-scene {
    min-height: 380px;
  }

  .directory-laptop {
    left: 5%;
    bottom: 54px;
    width: 92%;
  }

  .directory-screen {
    grid-template-columns: 1fr;
  }

  .directory-screen aside {
    display: none;
  }

  .person-row {
    grid-template-columns: 28px 1fr;
  }

  .person-row em,
  .person-row small {
    display: none;
  }

  .brand-mug {
    display: none;
  }

  .pillar {
    grid-template-columns: 58px 1fr;
    gap: 16px;
  }

  .pillar-icon {
    width: 56px;
    height: 56px;
  }

  .access-form {
    padding: 24px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 400px) {
  .header-inner {
    column-gap: 10px;
  }

  .brand-logo {
    width: 130px;
  }

  .header-cta {
    max-width: 132px;
    white-space: normal;
    line-height: 1.1;
  }

  .app-dashboard,
  .directory-ui,
  .step {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
