:root {
  --navy-950: #0b1f38;
  --navy-900: #142b4a;
  --navy-800: #1a3b63;
  --blue-700: #1346b8;
  --blue-600: #155eef;
  --blue-500: #2e90fa;
  --blue-100: #dbe9ff;
  --blue-50: #eef4ff;
  --teal-600: #0d8ea3;
  --teal-500: #18a2b8;
  --orange-500: #f79009;
  --green-600: #079455;
  --green-50: #ecfdf3;
  --ink: #101828;
  --body: #344054;
  --muted: #667085;
  --line: #dfe4eb;
  --line-soft: #edf0f4;
  --surface: #ffffff;
  --surface-soft: #f6f8fb;
  --surface-blue: #f5f8ff;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 18px 55px rgba(20, 43, 74, 0.12);
  --shadow-lg: 0 30px 90px rgba(12, 38, 70, 0.18);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1240px;
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(46, 144, 250, 0.55);
  outline-offset: 3px;
}

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

.section {
  padding: 108px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(223, 228, 235, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 35px rgba(20, 43, 74, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff url("assets/techdoksfera-logo.png") 50% 30% / 280% auto no-repeat;
}

.brand-name {
  color: #082f61;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
}

.brand-name span {
  color: #0795cf;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #475467;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 0.18s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--navy-900);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-900);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 99;
  padding: 24px;
  background: rgba(255, 255, 255, 0.99);
  border-top: 1px solid var(--line);
}

.mobile-menu a:not(.button) {
  display: block;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--navy-900);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu .button {
  margin-top: 24px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.18s ease;
}

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

.button:hover svg {
  transform: translateX(4px);
}

.button-primary {
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 10px 24px rgba(21, 94, 239, 0.2);
}

.button-primary:hover {
  background: #0f52d8;
  box-shadow: 0 14px 30px rgba(21, 94, 239, 0.27);
}

.button-secondary {
  border-color: #cbd5e1;
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy-900);
}

.button-secondary:hover {
  border-color: #9badc4;
  background: #fff;
}

.button-small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 13px;
}

.button-white {
  background: #fff;
  color: var(--navy-900);
  box-shadow: 0 12px 26px rgba(3, 20, 40, 0.18);
}

.button-white:hover {
  box-shadow: 0 15px 34px rgba(3, 20, 40, 0.25);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.13);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 94px 0 0;
  background-color: #f8fafc;
}

.section-blueprint {
  background-image:
    linear-gradient(rgba(20, 43, 74, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 43, 74, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 230px;
  background: linear-gradient(to bottom, transparent, #fff);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 520px;
  height: 520px;
  top: -230px;
  right: 4%;
  background: radial-gradient(circle, rgba(46, 144, 250, 0.14), rgba(46, 144, 250, 0));
}

.hero-glow-two {
  width: 420px;
  height: 420px;
  left: -260px;
  bottom: -60px;
  background: radial-gradient(circle, rgba(24, 162, 184, 0.11), rgba(24, 162, 184, 0));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  align-items: center;
  gap: 62px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 42px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: 3px;
  background: var(--orange-500);
}

.eyebrow-center {
  justify-content: center;
}

.eyebrow-light {
  color: #9fd2ff;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 790;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero h1 em {
  position: relative;
  color: var(--teal-600);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 0;
  bottom: 2px;
  z-index: -1;
  height: 10px;
  border-radius: 8px;
  background: rgba(247, 144, 9, 0.18);
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: #475467;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 19px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: #475467;
  font-size: 13px;
  font-weight: 650;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  background: var(--green-50);
  fill: none;
  stroke: var(--green-600);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 24px 4px 52px 0;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.hero-browser {
  position: relative;
  z-index: 1;
  transform: perspective(1500px) rotateY(-2.5deg) rotateX(1deg);
  transform-origin: center;
  box-shadow: var(--shadow-lg);
}

.browser-bar {
  height: 42px;
  display: grid;
  grid-template-columns: 72px 1fr 34px;
  align-items: center;
  gap: 12px;
  padding: 0 13px;
  border-bottom: 1px solid var(--line-soft);
  background: #f9fafb;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}

.browser-dots i:first-child {
  background: #f97066;
}

.browser-dots i:nth-child(2) {
  background: #fdb022;
}

.browser-dots i:last-child {
  background: #32d583;
}

.browser-address {
  overflow: hidden;
  padding: 5px 14px;
  border: 1px solid #e4e7ec;
  border-radius: 7px;
  background: #fff;
  color: #667085;
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-lock svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #98a2b3;
  stroke-width: 1.7;
}

.hero-screen-wrap {
  height: 460px;
  overflow: hidden;
  background: #f4f6f8;
}

.hero-screen-wrap img {
  width: 120%;
  max-width: none;
  height: auto;
  margin-left: -20%;
  object-fit: cover;
  object-position: top left;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 226px;
  padding: 12px 14px;
  border: 1px solid rgba(223, 228, 235, 0.9);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(20, 43, 74, 0.17);
  backdrop-filter: blur(12px);
}

.floating-card-top {
  top: -10px;
  right: -18px;
}

.floating-card-bottom {
  left: -28px;
  bottom: 16px;
}

.floating-card small,
.floating-card b {
  display: block;
  line-height: 1.35;
}

.floating-card small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 10px;
}

.floating-card b {
  color: var(--navy-900);
  font-size: 12px;
}

.floating-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
}

.floating-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-blue {
  background: var(--blue-50);
  color: var(--blue-600);
}

.floating-green {
  background: var(--green-50);
  color: var(--green-600);
}

.capability-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.capability-strip span {
  position: relative;
  padding: 16px 12px;
  color: #475467;
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.capability-strip span + span::before {
  content: "";
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 0;
  width: 1px;
  background: var(--line-soft);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 50px;
}

.split-heading h2,
.centered-heading h2,
.ai-copy h2,
.security-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(34px, 3.9vw, 48px);
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.split-heading > p,
.centered-heading > p,
.security-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.audience-card,
.feature-card,
.status-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.audience-card:hover,
.feature-card:hover,
.status-card:hover {
  transform: translateY(-2px);
  border-color: #bfd0e8;
  box-shadow: 0 16px 35px rgba(20, 43, 74, 0.08);
}

.audience-card {
  min-height: 420px;
  padding: 30px;
  overflow: hidden;
}

.audience-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 160px;
  height: 160px;
  border: 22px solid rgba(21, 94, 239, 0.035);
  border-radius: 50%;
}

.card-number {
  position: absolute;
  top: 24px;
  right: 25px;
  color: #c5ced9;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--blue-50);
  color: var(--blue-600);
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-card h3,
.feature-card h3,
.security-points h3 {
  margin: 24px 0 10px;
  color: var(--navy-950);
  font-size: 21px;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.audience-card > p,
.feature-card > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.check-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #475467;
  font-size: 14px;
  font-weight: 600;
}

.check-list li {
  position: relative;
  padding-left: 25px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-600);
  font-size: 11px;
  font-weight: 900;
}

.workflow-section {
  border-block: 1px solid var(--line-soft);
  background: var(--surface-blue);
}

.centered-heading {
  max-width: 850px;
  margin: 0 auto 55px;
  text-align: center;
}

.centered-heading > p {
  max-width: 700px;
  margin: 18px auto 0;
}

.workflow-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 10px;
  padding: 0;
  list-style: none;
}

.workflow-steps::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, #9ec4ff, #7cd3df);
}

.workflow-steps li {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 0 8px;
  text-align: center;
}

.step-marker {
  display: block;
  margin-bottom: 13px;
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.step-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 17px;
  border: 1px solid #c9d8eb;
  border-radius: 17px;
  background: #fff;
  color: var(--blue-600);
  box-shadow: 0 10px 25px rgba(20, 43, 74, 0.06);
  transition: transform 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.workflow-steps li:hover .step-icon,
.workflow-steps li:focus-within .step-icon {
  transform: translateY(-3px);
  border-color: var(--blue-500);
  color: var(--teal-600);
}

.step-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-steps h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 16px;
  line-height: 1.35;
}

.workflow-steps p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 250px;
  padding: 28px;
}

.feature-card h3 {
  margin-top: 23px;
  font-size: 19px;
}

.interfaces-section {
  background: var(--surface-soft);
}

.product-tabs {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 22px 65px rgba(20, 43, 74, 0.09);
}

.tab-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.product-tab {
  position: relative;
  min-height: 86px;
  padding: 16px 24px;
  border: 0;
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
}

.product-tab + .product-tab {
  border-left: 1px solid var(--line);
}

.product-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--blue-600);
  transform: scaleX(0);
  transition: transform 0.18s ease;
}

.product-tab.is-active {
  background: #fff;
  color: var(--navy-950);
}

.product-tab.is-active::after {
  transform: scaleX(1);
}

.product-tab span,
.product-tab small {
  display: block;
}

.product-tab span {
  font-size: 17px;
  font-weight: 780;
}

.product-tab small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.tab-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.52fr;
  align-items: center;
  gap: 46px;
  min-height: 620px;
  padding: 46px 0 46px 46px;
  animation: panel-in 0.2s ease both;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.interface-copy {
  align-self: center;
}

.interface-label {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 20px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.interface-copy h3 {
  margin: 18px 0 12px;
  color: var(--navy-950);
  font-size: clamp(27px, 3vw, 38px);
  letter-spacing: -0.03em;
  line-height: 1.17;
}

.interface-copy > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.check-list-large {
  gap: 12px;
  margin-top: 25px;
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--blue-600);
  font-weight: 780;
  text-decoration: none;
}

.text-link span {
  transition: transform 0.18s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.interface-browser {
  overflow: hidden;
  border-right: 0;
  border-radius: 17px 0 0 17px;
  box-shadow: -12px 24px 60px rgba(20, 43, 74, 0.14);
}

.interface-browser img {
  width: 120%;
  max-width: none;
  height: 510px;
  margin-left: -20%;
  object-fit: cover;
  object-position: top left;
}

.ai-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: #fff;
}

.ai-section::before {
  content: "";
  position: absolute;
  top: -250px;
  left: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 144, 250, 0.2), transparent 68%);
}

.ai-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 80px;
}

.ai-copy h2 {
  color: #fff;
}

.ai-copy > p:not(.eyebrow) {
  margin: 23px 0 0;
  color: #bed0e2;
  font-size: 17px;
  line-height: 1.7;
}

.ai-points {
  display: grid;
  gap: 18px;
  margin-top: 31px;
}

.ai-points div {
  padding-left: 18px;
  border-left: 2px solid rgba(83, 177, 253, 0.6);
}

.ai-points b,
.ai-points span {
  display: block;
}

.ai-points b {
  color: #fff;
  font-size: 15px;
}

.ai-points span {
  margin-top: 2px;
  color: #91a7bf;
  font-size: 13px;
}

.ai-console {
  min-height: 500px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.ai-console-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ai-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--blue-600);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.ai-console-head b,
.ai-console-head small {
  display: block;
  line-height: 1.4;
}

.ai-console-head small {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  color: #91a7bf;
  font-size: 11px;
}

.ai-console-head small i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #32d583;
  box-shadow: 0 0 0 4px rgba(50, 213, 131, 0.12);
}

.ai-message {
  width: fit-content;
  max-width: 86%;
  margin-top: 20px;
  padding: 13px 15px;
  border-radius: 15px;
  font-size: 14px;
}

.user-message {
  margin-left: auto;
  border-bottom-right-radius: 4px;
  background: var(--blue-600);
  color: #fff;
}

.assistant-message {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom-left-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #e7eef7;
}

.assistant-message > p {
  margin: 0 0 16px;
  line-height: 1.65;
}

.ai-result-row {
  display: grid;
  grid-template-columns: 9px minmax(115px, auto) 1fr;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  padding: 9px 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
}

.ai-result-row b {
  font-size: 12px;
}

.ai-result-row span:last-child {
  color: #a9bbce;
  font-size: 11px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.status-red {
  background: #f97066;
}

.status-orange {
  background: #fdb022;
}

.ai-source {
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ai-source span,
.ai-source code {
  display: block;
}

.ai-source span {
  color: #91a7bf;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.ai-source code {
  margin-top: 4px;
  color: #9fd2ff;
  font-size: 11px;
}

.assistant-message > small {
  display: block;
  margin-top: 12px;
  color: #91a7bf;
  font-size: 10px;
}

.roadmap-section {
  background: #fff;
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.status-card {
  padding: 30px;
}

.status-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-soft);
}

.status-card-head > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-950);
  font-size: 17px;
  font-weight: 800;
}

.status-card-head i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.status-live .status-card-head i {
  background: var(--green-600);
  box-shadow: 0 0 0 5px rgba(7, 148, 85, 0.1);
}

.status-next .status-card-head i {
  background: var(--blue-600);
  box-shadow: 0 0 0 5px rgba(21, 94, 239, 0.1);
}

.status-card-head small {
  color: var(--muted);
  font-size: 12px;
}

.status-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #475467;
  font-size: 14px;
}

.status-card li {
  position: relative;
  padding-left: 19px;
}

.status-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #98a2b3;
  transform: translateY(-50%);
}

.status-live li::before {
  background: var(--green-600);
}

.status-next li::before {
  background: var(--blue-600);
}

.security-section {
  border-block: 1px solid var(--line-soft);
  background: var(--surface-blue);
}

.security-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.security-copy > p {
  margin-top: 23px;
}

.security-points {
  display: grid;
  gap: 12px;
}

.security-points article {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.security-points article > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--navy-900);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}

.security-points h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.security-points p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.final-cta-section {
  padding: 88px 0;
  background: #fff;
}

.final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 70px;
  padding: 52px 56px;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.final-cta::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -60px;
  width: 330px;
  height: 330px;
  border: 52px solid rgba(46, 144, 250, 0.12);
  border-radius: 50%;
}

.final-cta-copy,
.final-cta-actions {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 15px 0 0;
  color: #bed0e2;
  font-size: 16px;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
}

.site-footer {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.footer-brand img {
  width: 190px;
  height: 44px;
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-grid p:last-child {
  text-align: right;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-short {
  transition-delay: 0.06s;
}

.reveal-delay,
.reveal-delay-long {
  transition-delay: 0.12s;
}

@media (max-width: 1180px) {
  :root {
    --container: 1080px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .brand-name {
    font-size: 21px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(510px, 1.12fr);
    gap: 40px;
  }

  .floating-card-top {
    right: -4px;
  }

  .floating-card-bottom {
    left: -8px;
  }

  .tab-panel {
    grid-template-columns: 0.82fr 1.38fr;
    gap: 30px;
    padding-left: 34px;
  }

  .ai-grid,
  .security-grid {
    gap: 60px;
  }
}

@media (max-width: 1020px) {
  :root {
    --header-height: 70px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    width: min(820px, 100%);
    margin: 0 auto;
    padding-top: 30px;
  }

  .hero-browser {
    transform: none;
  }

  .hero-screen-wrap {
    height: 500px;
  }

  .capability-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .capability-strip span:nth-child(4)::before {
    display: none;
  }

  .capability-strip span:nth-child(n+4) {
    border-top: 1px solid var(--line-soft);
  }

  .audience-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-card:last-child {
    grid-column: 1 / -1;
    min-height: 330px;
  }

  .workflow-steps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 38px;
  }

  .workflow-steps::before {
    display: none;
  }

  .tab-panel {
    grid-template-columns: 1fr;
    gap: 35px;
    min-height: 0;
    padding: 36px 0 0 36px;
  }

  .interface-copy {
    max-width: 650px;
    padding-right: 36px;
  }

  .interface-browser {
    border-bottom: 0;
    border-radius: 17px 0 0 0;
  }

  .ai-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .ai-copy,
  .security-copy {
    max-width: 780px;
  }

  .ai-console {
    width: min(760px, 100%);
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .final-cta-actions {
    flex-direction: row;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 20px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1.05;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    padding-bottom: 34px;
  }

  .browser-bar {
    grid-template-columns: 56px 1fr 20px;
    height: 36px;
    padding-inline: 10px;
  }

  .browser-dots {
    gap: 4px;
  }

  .browser-dots i {
    width: 7px;
    height: 7px;
  }

  .browser-address {
    padding: 4px 8px;
    font-size: 9px;
  }

  .hero-screen-wrap {
    height: auto;
    max-height: 430px;
  }

  .hero-screen-wrap img {
    min-height: 320px;
    object-fit: cover;
    object-position: top left;
  }

  .floating-card {
    display: none;
  }

  .capability-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 22px;
  }

  .capability-strip span:nth-child(odd)::before {
    display: none;
  }

  .capability-strip span:nth-child(n+3) {
    border-top: 1px solid var(--line-soft);
  }

  .capability-strip span {
    padding: 13px 8px;
    font-size: 10px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 36px;
  }

  .split-heading h2,
  .centered-heading h2,
  .ai-copy h2,
  .security-copy h2,
  .final-cta h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .audience-grid,
  .feature-grid,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .audience-card,
  .audience-card:last-child {
    grid-column: auto;
    min-height: auto;
    padding: 25px;
  }

  .feature-card {
    min-height: 0;
    padding: 25px;
  }

  .centered-heading {
    margin-bottom: 40px;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 0;
  }

  .workflow-steps::before {
    display: block;
    top: 25px;
    bottom: 25px;
    left: 26px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(#9ec4ff, #7cd3df);
  }

  .workflow-steps li {
    display: grid;
    grid-template-columns: 54px 1fr;
    grid-template-rows: auto auto;
    gap: 0 16px;
    min-height: 92px;
    padding: 0;
    text-align: left;
  }

  .step-marker {
    display: none;
  }

  .step-icon {
    grid-row: 1 / 3;
    width: 54px;
    height: 54px;
    margin: 0;
    border-radius: 14px;
  }

  .workflow-steps h3 {
    align-self: end;
    font-size: 17px;
  }

  .workflow-steps p {
    align-self: start;
    margin-top: 3px;
    font-size: 13px;
  }

  .tab-list {
    overflow-x: auto;
  }

  .product-tab {
    min-width: 230px;
    padding-inline: 18px;
  }

  .tab-panel {
    padding: 27px 0 0 20px;
  }

  .interface-copy {
    padding-right: 20px;
  }

  .interface-copy h3 {
    font-size: 29px;
  }

  .interface-browser img {
    height: 390px;
  }

  .ai-grid,
  .security-grid {
    gap: 45px;
  }

  .ai-console {
    min-height: 0;
    padding: 18px;
  }

  .ai-message {
    max-width: 94%;
  }

  .ai-result-row {
    grid-template-columns: 9px 1fr;
  }

  .ai-result-row span:last-child {
    grid-column: 2;
  }

  .status-card {
    padding: 25px;
  }

  .status-card ul {
    grid-template-columns: 1fr;
  }

  .security-points article {
    padding: 18px;
  }

  .final-cta-section {
    padding: 60px 0;
  }

  .final-cta {
    padding: 36px 28px;
  }

  .final-cta-actions {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-grid p:last-child {
    text-align: center;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand {
    gap: 7px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 18px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero h1 em {
    white-space: normal;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .hero-screen-wrap img {
    min-height: 270px;
  }

  .capability-strip {
    grid-template-columns: 1fr;
  }

  .capability-strip span + span::before {
    display: none;
  }

  .capability-strip span:nth-child(n+2) {
    border-top: 1px solid var(--line-soft);
  }

  .status-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .interface-browser img {
    height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
