@import url("https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,600,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@600;700&display=swap");

:root {
  --ink: #111111;
  --muted: #62656d;
  --line: #e3e6df;
  --soft: #f6f7f4;
  --blue: #2f65ed;
  --blue-deep: #2455dc;
  --blue-light: #a9bff5;
  --cyan: #62d6ff;
  --green: #2d9d74;
  --orange: #f2a22d;
  --purple: #825be8;
  --red: #f06767;
  --white: #ffffff;
  --radius: 22px;
  --container: 1300px;
  --shadow: 0 24px 70px rgba(18, 28, 55, .10);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Satoshi", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

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

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

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(13, 25, 52, .06);
}

.nav {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr 260px;
  align-items: center;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  font-weight: 650;
  font-size: 22px;
  letter-spacing: -.04em;
}

.brand-logo { display: none; }

.brand::before,
.brand::after { display: none; }

.brand-mark {
  position: relative;
  display: inline-block;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  background: url("https://www.tahmir.com/wp-content/uploads/ugentic-assets/ugentic-import-6a67ecaf43bf9/assets/tahmir-stack-mark.svg") center / contain no-repeat;
  transform-origin: 50% 50%;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}

.brand-mark::before,
.brand-t,
.brand-spark { display: none; }

.brand:hover .brand-mark { transform: translateY(-2px) scale(1.025); }

.brand-name {
  white-space: nowrap;
  font-family: "Figtree", "Satoshi", "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.055em;
}
.footer .brand-mark { background-image: url("https://www.tahmir.com/wp-content/uploads/ugentic-assets/ugentic-import-6a67ecaf43bf9/assets/tahmir-stack-mark.svg"); }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

.nav-links > a,
.product-trigger {
  position: relative;
  padding: 31px 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 550;
  cursor: pointer;
}

.nav-links > a::after,
.product-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 23px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transition: transform .2s ease;
  transform-origin: right;
}

.nav-links > a:hover::after,
.nav-links > a.active::after,
.product-trigger:hover::after,
.nav-product.is-open .product-trigger::after {
  transform: scaleX(1);
  transform-origin: left;
}

.product-trigger span {
  display: inline-block;
  margin-left: 5px;
  transition: transform .2s ease;
}

.nav-product.is-open .product-trigger span { transform: rotate(180deg); }

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 25px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(18, 23, 34, .15);
}

.button-dark,
.button-primary {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover,
.button-primary:hover { background: var(--blue); border-color: var(--blue); }

.button-light { background: var(--white); border-color: var(--line); }
.button-light:hover { border-color: var(--ink); }
.button-small { min-height: 42px; padding: 0 18px; font-size: 13px; border-radius: 8px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.nav-open .menu-toggle span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.nav-product { position: static; }

.mega-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  width: min(920px, calc(100vw - 64px));
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  border: 1px solid var(--line);
  border-radius: 0 0 22px 22px;
  background: var(--white);
  box-shadow: 0 30px 70px rgba(22, 30, 52, .14);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.nav-product.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-inner {
  display: grid;
  grid-template-columns: 1.05fr 2fr;
  gap: 18px;
}

.mega-intro {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
  border-radius: 16px;
  background: linear-gradient(160deg, #acc0f7 0%, #6f91f1 48%, #2f65ed 100%);
}

.mega-intro .eyebrow { color: rgba(255,255,255,.75); justify-content: flex-start; }
.mega-intro h3 { margin: 12px 0 8px; font-size: 30px; line-height: 1.05; letter-spacing: -.045em; }
.mega-intro p { margin: 0; color: rgba(255,255,255,.78); font-size: 14px; }

.mega-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: center;
  gap: 8px;
}

.mega-link {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: center;
  padding: 17px;
  border: 1px solid transparent;
  border-radius: 13px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.mega-link:hover {
  background: var(--soft);
  border-color: var(--line);
  transform: translateY(-2px);
}

.mega-link i,
.capability-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--blue);
  border-radius: 11px;
  background: #eef3ff;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
}

.mega-link:nth-child(2) i { color: var(--green); background: #ebf7f1; }
.mega-link:nth-child(3) i { color: var(--orange); background: #fff6e5; }
.mega-link:nth-child(4) i { color: var(--purple); background: #f3efff; }
.mega-link strong { display: block; font-size: 15px; }
.mega-link small { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; }
.mobile-menu-panel { display: none; }

.hero {
  position: relative;
  padding: 92px 0 66px;
  text-align: center;
}

.hero .container { position: relative; }

.hero-copy,
.page-hero .hero-copy {
  width: min(930px, 100%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #25272d;
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.page-hero h1 {
  margin: 32px auto 22px;
  font-size: clamp(62px, 6.5vw, 102px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.067em;
}

.hero h1 em,
.page-hero h1 em,
.section-title em,
.builder-copy h2 em,
.cta-content h2 em {
  display: block;
  font-style: normal;
}

.gradient-word { color: inherit; background: none; }

.hero-copy > p,
.page-hero .hero-copy > p {
  width: min(660px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.link-arrow::after { content: "↗"; transition: transform .2s ease; }
.link-arrow:hover::after { transform: translate(3px, -3px); }

.cursor-chip {
  position: absolute;
  z-index: 3;
  animation: cursorFloat 6s ease-in-out infinite;
}

.cursor-chip span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 10px 22px rgba(25, 34, 54, .18);
  font-size: 12px;
  font-weight: 650;
}

.cursor-chip::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 4px 0 0 3px;
  border-top: 8px solid var(--ink);
  border-right: 6px solid transparent;
}

.cursor-one { top: 225px; left: 5%; }
.cursor-two { top: 355px; right: 6%; animation-delay: -2s; }
.cursor-two span { background: var(--green); }
.cursor-three { top: 205px; right: 4%; animation-delay: -4s; }
.cursor-three span { background: #5d65ec; }

@keyframes cursorFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-product,
.page-product-image {
  position: relative;
  width: min(1080px, 100%);
  margin: 68px auto 0;
  overflow: hidden;
  border: 1px solid #dfe5e2;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 45px;
  padding: 0 14px;
  color: #72777f;
  border-bottom: 1px solid var(--line);
  background: #f5f6f5;
  font-size: 12px;
  text-align: left;
}

.browser-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff675e;
}
.browser-bar i:nth-child(2) { background: #f3be3f; }
.browser-bar i:nth-child(3) { background: #35c858; }
.browser-bar span { margin-left: 8px; }
.browser-bar b {
  margin-left: auto;
  padding: 5px 8px;
  color: var(--green);
  border-radius: 6px;
  background: #eaf7f0;
  font-size: 10px;
}

.hero-video {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #f8fafc;
  cursor: pointer;
}

.hero-video img,
.page-product-image img {
  display: block;
  width: 100%;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.hero-video:hover img { transform: scale(1.015); }

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  transform: translate(-50%, -50%);
  border: 9px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 16px 40px rgba(0,0,0,.24);
  transition: transform .25s ease, background .25s ease;
}

.hero-video:hover .video-play { transform: translate(-50%, -50%) scale(1.08); background: var(--blue); }
.video-play i {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
}

.video-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 11px 14px;
  color: var(--white);
  border-radius: 8px;
  background: rgba(17,17,17,.88);
  font-size: 12px;
}
.video-caption b { margin-left: 8px; color: rgba(255,255,255,.6); }

.video-dialog {
  width: min(1000px, calc(100% - 32px));
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 30px 100px rgba(0,0,0,.45);
}
.video-dialog::backdrop { background: rgba(4,7,13,.82); backdrop-filter: blur(5px); }
.video-frame { aspect-ratio: 16/9; overflow: hidden; border-radius: 18px; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-close {
  position: absolute;
  z-index: 2;
  top: -48px;
  right: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: transparent;
  font-size: 25px;
  cursor: pointer;
}

.trust {
  width: min(980px, 100%);
  margin: 75px auto 0;
}

.trust > p,
.trust-label {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 13px;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}

.logo-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #30343b;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.03em;
}
.logo-row img {
  width: 29px;
  height: 29px;
  padding: 5px;
  object-fit: contain;
  border-radius: 8px;
  background: #f4f6fa;
}

.section { padding: 130px 0; }
.section-soft { background: var(--soft); }
.section-bluewash { background: #eef3ff; }

.section-heading {
  width: min(790px, 100%);
  margin: 0 auto 65px;
  text-align: center;
}

.section-title,
.builder-copy h2,
.cta-content h2 {
  margin: 24px 0 20px;
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.06em;
}

.section-heading > p,
.feature-intro > p {
  width: min(650px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

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

.mosaic-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.mosaic-large { grid-row: span 2; min-height: 938px; }
.mosaic-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  min-height: 510px;
}

.mosaic-copy { position: relative; z-index: 2; padding: 38px 38px 22px; }
.mosaic-card h3 { margin: 13px 0 12px; font-size: 29px; font-weight: 500; line-height: 1.08; letter-spacing: -.045em; }
.mosaic-card p { max-width: 460px; margin: 0; color: var(--muted); font-size: 15px; }
.mosaic-card .button { margin-top: 22px; }
.feature-tag {
  display: inline-flex;
  padding: 7px 10px;
  color: var(--blue);
  border-radius: 7px;
  background: #eef3ff;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mosaic-media {
  position: absolute;
  right: 28px;
  bottom: -4px;
  left: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px 16px 0 0;
  background: #f8fafc;
  box-shadow: 0 18px 45px rgba(30, 48, 83, .10);
}
.mosaic-media img { display: block; width: 100%; }
.mosaic-media.compact { top: 220px; bottom: 0; }
.mosaic-large .mosaic-media { top: 255px; bottom: 0; }
.mosaic-wide .mosaic-media { top: 44px; right: 0; bottom: 0; left: 43%; border-radius: 16px 0 0 0; }

.clora-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ui-feature {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.ui-feature-dashboard {
  grid-row: 1 / span 2;
  min-height: 1020px;
}

.ui-feature-settings,
.ui-feature-activity { min-height: 501px; }

.ui-feature-copy { position: relative; z-index: 2; }
.ui-feature h3 {
  max-width: 500px;
  margin: 14px 0 11px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.045em;
}
.ui-feature-copy > p { max-width: 480px; margin: 0; color: var(--muted); font-size: 15px; }
.ui-feature-copy .button { margin-top: 23px; }

.ui-product-shot {
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fafc;
  box-shadow: 0 18px 40px rgba(30,48,83,.09);
}
.ui-window-bar {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: #6a6f78;
  border-bottom: 1px solid var(--line);
  background: #f7f8f7;
  font-size: 11px;
}
.ui-window-bar div { display: flex; gap: 5px; }
.ui-window-bar i { width: 7px; height: 7px; border-radius: 50%; background: #5c7cf0; }
.ui-window-bar i:nth-child(2) { background: #7cd5ff; }
.ui-window-bar i:nth-child(3) { background: #52b887; }
.ui-product-shot img { display: block; width: 100%; aspect-ratio: 1.18; object-fit: cover; object-position: top; }

.ui-trend-card {
  position: relative;
  min-height: 210px;
  margin-top: 18px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.ui-trend-card > span,
.ui-trend-card > small { display: block; color: var(--muted); font-size: 11px; }
.ui-trend-card > span { letter-spacing: .08em; text-transform: uppercase; }
.ui-trend-card strong { display: block; margin: 22px 0 4px; font-size: 43px; font-weight: 450; line-height: 1; letter-spacing: -.06em; }
.trend-line {
  position: absolute;
  right: 24px;
  bottom: 28px;
  left: 24px;
  display: flex;
  height: 62px;
  align-items: flex-end;
  gap: 7px;
  border-bottom: 1px solid #dbe4fb;
}
.trend-line::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  transform: skewY(-6deg);
  transform-origin: left;
  background: linear-gradient(90deg, #9dc2ff, #2f65ed);
  box-shadow: 0 12px 25px rgba(47,101,237,.18);
}
.trend-line i {
  width: 100%;
  border-radius: 5px 5px 0 0;
  background: #edf2ff;
}
.trend-line i:nth-child(1) { height: 22%; }
.trend-line i:nth-child(2) { height: 35%; }
.trend-line i:nth-child(3) { height: 30%; }
.trend-line i:nth-child(4) { height: 50%; }
.trend-line i:nth-child(5) { height: 58%; }
.trend-line i:nth-child(6) { height: 73%; }
.trend-line i:nth-child(7) { height: 89%; background: #6e92ef; }

.settings-list {
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.settings-list > div {
  display: flex;
  min-height: 71px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 17px;
  border-bottom: 1px solid var(--line);
}
.settings-list > div:last-child { border-bottom: 0; }
.settings-list span b,
.settings-list span small { display: block; }
.settings-list span b { font-size: 13px; }
.settings-list span small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.switch {
  position: relative;
  width: 36px;
  height: 20px;
  flex: 0 0 36px;
  border-radius: 20px;
  background: #dfe3e0;
}
.switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
  transition: transform .25s ease;
}
.switch.on { background: #527bee; }
.switch.on::after { transform: translateX(16px); }

.activity-panel {
  margin-top: 26px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.activity-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.activity-toolbar strong { font-size: 13px; }
.activity-toolbar span { padding: 5px 8px; border: 1px solid var(--line); border-radius: 6px; font-size: 9px; font-weight: 600; }
.activity-item {
  display: grid;
  grid-template-columns: 33px 1fr auto;
  gap: 10px;
  align-items: start;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.activity-item > i {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: #fff;
  border-radius: 50%;
  font-style: normal;
  font-size: 9px;
}
.avatar-purple { background: #855ce7; }
.avatar-green { background: #2d9d74; }
.activity-item p { margin: 0; line-height: 1.25; }
.activity-item p strong,
.activity-item p small { display: block; }
.activity-item p strong { font-size: 11px; }
.activity-item p small { margin-top: 4px; color: var(--muted); font-size: 10px; }
.activity-item time { color: #a0a4aa; font-size: 9px; }
.activity-file {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 13px;
  padding: 11px;
  border-radius: 10px;
  background: #f5f7fb;
}
.activity-file > span { display: grid; place-items: center; width: 31px; height: 31px; color: #fff; border-radius: 9px; background: #2f65ed; font-size: 8px; font-weight: 700; }
.activity-file p { margin: 0; line-height: 1.2; }
.activity-file p strong,
.activity-file p small { display: block; }
.activity-file p strong { font-size: 10px; }
.activity-file p small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.activity-file > b { color: var(--blue); font-size: 9px; }

.integration-band {
  padding: 120px 0 135px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% -15%, rgba(255,255,255,.32), transparent 35%),
    linear-gradient(180deg, #91aaf0 0%, #557fec 45%, #2d63eb 100%);
}

.section-heading.light { margin-bottom: 55px; }
.section-heading.light .eyebrow,
.section-heading.light p { color: rgba(255,255,255,.78); }
.section-heading.light .section-title { color: var(--white); }

.integration-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  width: min(920px, 100%);
  margin: 0 auto;
  gap: 14px;
}

.integration-grid div {
  display: flex;
  min-height: 114px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 28px rgba(25, 45, 104, .18);
  transition: transform .25s ease, box-shadow .25s ease;
}
.integration-grid div:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: 0 26px 36px rgba(25,45,104,.26); }
.integration-grid img { width: 31px; height: 31px; object-fit: contain; }
.integration-grid small { margin-top: 5px; color: #727987; font-size: 11px; }

.proof-section { text-align: center; }
.quote-mark { width: 42px; margin: 0 auto 30px; color: var(--blue); font-size: 70px; line-height: .5; }
.proof-section blockquote {
  width: min(950px, 100%);
  margin: 0 auto;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.055em;
}
.quote-person { display: inline-flex; align-items: center; gap: 12px; margin-top: 35px; text-align: left; }
.quote-person > span { display: grid; place-items: center; width: 44px; height: 44px; color: var(--white); border-radius: 50%; background: var(--green); font-size: 12px; }
.quote-person p { margin: 0; line-height: 1.25; }
.quote-person strong, .quote-person small { display: block; }
.quote-person strong { font-size: 14px; }
.quote-person small { margin-top: 4px; color: var(--muted); }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(980px, 100%);
  margin: 85px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.metric-grid article,
.metric-card {
  min-height: 150px;
  padding: 32px;
  text-align: left;
  border-right: 1px solid var(--line);
  background: var(--white);
}
.metric-grid article:last-child { border-right: 0; }
.metric-grid strong { display: block; font-size: 48px; font-weight: 450; line-height: 1; letter-spacing: -.06em; }
.metric-grid span { display: block; margin-top: 10px; color: var(--muted); font-size: 13px; }

.delivery-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: min(1080px, 100%);
  margin: 76px auto 0;
  text-align: left;
}

.delivery-journey::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 62px;
  right: 14%;
  left: 14%;
  height: 2px;
  background: linear-gradient(90deg, rgba(47,101,237,.12), rgba(47,101,237,.72), rgba(45,157,116,.65), rgba(242,162,45,.2));
}

.delivery-journey::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 57px;
  left: 14%;
  width: 12px;
  height: 12px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 4px 12px rgba(47,101,237,.34);
  animation: journey-flow 5.5s ease-in-out infinite;
}

.journey-step {
  position: relative;
  z-index: 2;
  min-height: 300px;
  padding: 30px;
  overflow: visible;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 26px;
  background: radial-gradient(circle at 86% 0%, rgba(47,101,237,.12), transparent 34%), var(--white);
  box-shadow: 0 20px 55px rgba(17,28,54,.08);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
}

.journey-prepare { background: radial-gradient(circle at 86% 0%, rgba(45,157,116,.13), transparent 34%), var(--white); }
.journey-handoff { background: radial-gradient(circle at 86% 0%, rgba(242,162,45,.15), transparent 34%), var(--white); }

.journey-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 4;
  top: 47px;
  right: -28px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--blue);
  border: 1px solid rgba(47,101,237,.18);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(20,35,75,.1);
  font-size: 18px;
}

.journey-step:hover {
  z-index: 3;
  border-color: rgba(47,101,237,.25);
  box-shadow: 0 30px 70px rgba(17,28,54,.14);
  transform: translateY(-9px);
}

.journey-number {
  position: absolute;
  top: 26px;
  right: 26px;
  color: #9299a5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
}

.journey-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  color: var(--blue);
  border-radius: 20px;
  background: #edf3ff;
  box-shadow: inset 0 0 0 1px rgba(47,101,237,.08);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}

.journey-prepare .journey-icon { color: var(--green); background: #eaf8f3; box-shadow: inset 0 0 0 1px rgba(45,157,116,.1); }
.journey-handoff .journey-icon { color: #cf7b00; background: #fff3df; box-shadow: inset 0 0 0 1px rgba(242,162,45,.13); }
.journey-step:hover .journey-icon { transform: translateY(-3px) rotate(-3deg) scale(1.04); }

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

.journey-step h3 {
  margin: 34px 0 0;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.045em;
}

.journey-step p {
  min-height: 66px;
  margin: 15px 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.journey-step > small {
  display: inline-flex;
  padding: 7px 10px;
  color: #596170;
  border: 1px solid #e7eaf0;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@keyframes journey-flow {
  0% { left: 14%; opacity: 0; }
  10% { opacity: 1; }
  48% { background: var(--green); }
  90% { opacity: 1; }
  100% { left: calc(86% - 12px); opacity: 0; background: var(--orange); }
}

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

.capability-grid article,
.source-card,
.step-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
}
.capability-grid article:hover,
.source-card:hover,
.step-card:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(25,35,54,.08); }
.capability-grid article:nth-child(2) i,
.capability-grid article:nth-child(6) i { color: var(--purple); background: #f2efff; }
.capability-grid article:nth-child(3) i { color: var(--orange); background: #fff6e5; }
.capability-grid article:nth-child(4) i { color: var(--green); background: #eaf7f0; }
.capability-grid article:nth-child(5) i { color: var(--red); background: #fff0ef; }
.capability-grid h3,
.source-card h3,
.step-card h3 { margin: 27px 0 10px; font-size: 21px; font-weight: 550; letter-spacing: -.035em; }
.capability-grid p,
.source-card p,
.step-card p { margin: 0; color: var(--muted); font-size: 14px; }
.source-icon,
.step-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--blue);
  border-radius: 12px;
  background: #eef3ff;
  font-size: 12px;
  font-weight: 700;
}

.cta-footer { padding: 35px 0 90px; background: var(--white); }
.cta-content {
  display: flex;
  min-height: 260px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 56px;
  color: var(--white);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% -30%, rgba(255,255,255,.35), transparent 45%),
    linear-gradient(180deg, #89a6f3, #2f65ed);
}
.cta-content h2 { max-width: 720px; margin: 0; font-size: clamp(48px, 5vw, 76px); color: var(--white); }
.cta-content .hero-actions { flex: 0 0 auto; margin: 0; }
.cta-content .button-light { color: var(--white); border-color: rgba(255,255,255,.4); background: transparent; }
.cta-content .button-light:hover { color: var(--ink); background: var(--white); }

.footer {
  padding: 72px 0 30px;
  color: #d0d0d0;
  background: #050505;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
}
.footer .brand { color: var(--white); }
.footer .footer-brand p { max-width: 300px; margin: 24px 0 18px; color: #8d8d8d; font-size: 14px; }
.footer .footer-brand > a:last-child { color: #bfc4cf; font-size: 13px; }
.footer h4 { margin: 8px 0 23px; color: #7d7d7d; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 13px; }
.footer-links a { color: #a5a5a5; font-size: 14px; transition: color .2s ease; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
  padding-top: 25px;
  color: #666;
  border-top: 1px solid #242424;
  font-size: 12px;
}

/* Internal page hero */
.page-hero {
  padding: 92px 0 95px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(58px, 6vw, 92px); }
.page-hero .page-product-image { margin-top: 60px; }

.feature-intro {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.feature-intro .section-title { margin: 0; }
.feature-intro > p { margin: 0 0 6px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.feature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.feature-card-media { aspect-ratio: 16/10; overflow: hidden; border-bottom: 1px solid var(--line); background: var(--soft); }
.feature-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s ease; }
.feature-card:hover .feature-card-media img { transform: scale(1.025); }
.feature-card-body { padding: 30px; }
.feature-card h3 { margin: 15px 0 10px; font-size: 26px; font-weight: 500; line-height: 1.1; letter-spacing: -.045em; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }

.builder-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.workflow-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.workflow-image img { display: block; width: 100%; }
.builder-copy h2 { font-size: clamp(45px, 4.4vw, 68px); }
.builder-copy > p { color: var(--muted); font-size: 17px; }
.check-list,
.plan-list,
.comparison-list,
.micro-proof { padding: 0; list-style: none; }
.check-list { display: grid; gap: 11px; margin: 25px 0 30px; }
.check-list li,
.plan-list li,
.comparison-list li { position: relative; padding-left: 26px; color: #42454d; font-size: 14px; }
.check-list li::before,
.plan-list li::before,
.comparison-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.step-card { min-height: 300px; border: 0; border-right: 1px solid var(--line); border-radius: 0; }
.step-card:last-child { border-right: 0; }
.step-card:hover { transform: none; box-shadow: none; background: var(--soft); }

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.comparison-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.comparison-card.tahmir { color: var(--white); border-color: var(--ink); background: var(--ink); }
.comparison-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.comparison-head h3 { margin: 0; font-size: 28px; font-weight: 500; letter-spacing: -.04em; }
.comparison-badge { padding: 7px 10px; color: var(--blue); border-radius: 7px; background: #eef3ff; font-size: 10px; font-weight: 650; text-transform: uppercase; }
.comparison-card.tahmir .comparison-badge { color: var(--white); background: rgba(255,255,255,.12); }
.comparison-list { display: grid; gap: 14px; margin: 30px 0 0; }
.comparison-card.tahmir .comparison-list li { color: #c2c2c2; }

.story-section { overflow: hidden; }
.story-viewport {
  width: 100%;
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
}
.story-viewport::-webkit-scrollbar { display: none; }
.story-viewport:active { cursor: grabbing; }
.story-track { display: flex; width: max-content; gap: 18px; padding: 0 max(32px, calc((100vw - var(--container))/2)); }
.story-card {
  display: flex;
  width: min(520px, calc(100vw - 54px));
  min-height: 410px;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.story-card.featured { color: var(--white); border-color: var(--blue); background: var(--blue); }
.story-type { font-size: 11px; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; }
.story-copy { margin: 25px 0; font-size: 31px; line-height: 1.13; letter-spacing: -.045em; }
.story-meta { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 12px; }
.story-card.featured .story-meta { color: rgba(255,255,255,.72); }
.story-meta strong { display: block; color: var(--ink); font-size: 13px; }
.story-card.featured .story-meta strong { color: var(--white); }
.avatar { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 42px; color: var(--white); border-radius: 50%; background: var(--green); font-size: 11px; }
.drag-hint { margin-top: 20px; color: var(--muted); text-align: center; font-size: 11px; }

.timeline { display: grid; gap: 18px; }
.timeline-item article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.timeline-item h3 { margin: 0 0 9px; font-size: 25px; font-weight: 500; letter-spacing: -.04em; }
.timeline-item p { margin: 0; color: var(--muted); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.pricing-card {
  position: relative;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.pricing-card.popular { color: var(--white); border-color: var(--ink); background: var(--ink); }
.popular-label {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  color: var(--white);
  border-radius: 7px;
  background: var(--blue);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.plan-kicker { color: var(--muted); font-size: 12px; }
.pricing-card.popular .plan-kicker,
.pricing-card.popular .plan-description,
.pricing-card.popular .plan-list li { color: #a9a9a9; }
.pricing-card h3 { margin: 12px 0; font-size: 33px; font-weight: 500; letter-spacing: -.045em; }
.price { display: flex; align-items: flex-end; gap: 8px; margin: 26px 0 20px; }
.price strong { font-size: 76px; font-weight: 400; line-height: .8; letter-spacing: -.07em; }
.price span { color: var(--muted); font-size: 14px; }
.plan-description { min-height: 50px; margin: 0 0 25px; color: var(--muted); }
.pricing-card .button { width: 100%; }
.pricing-card.popular .button-primary { color: var(--ink); border-color: var(--white); background: var(--white); }
.pricing-card.popular .button-primary:hover { color: var(--white); border-color: var(--blue); background: var(--blue); }
.plan-list { display: grid; gap: 12px; margin: 30px 0 0; padding-top: 28px; border-top: 1px solid var(--line); }
.pricing-card.popular .plan-list { border-color: #2c2c2c; }

.plan-comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.plan-comparison-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.plan-comparison-row:last-child { border-bottom: 0; }
.plan-comparison-row > div { min-width: 0; padding: 24px; border-right: 1px solid var(--line); }
.plan-comparison-row > div:last-child { border-right: 0; }
.plan-comparison-header { background: var(--soft); }
.plan-comparison-header strong,
.plan-comparison-header span,
.plan-comparison-header small,
.plan-comparison-value strong,
.plan-comparison-value span,
.plan-comparison-criterion span,
.plan-comparison-criterion small { display: block; }
.plan-comparison-header strong { margin: 5px 0; font-size: 19px; }
.plan-comparison-header span,
.plan-comparison-criterion span { font-size: 12px; font-weight: 600; }
.plan-comparison-header small,
.plan-comparison-criterion small,
.plan-comparison-value span { margin-top: 5px; color: var(--muted); font-size: 12px; }
.plan-comparison-value strong { font-size: 14px; }
.plan-comparison-actions .button { width: 100%; }

/* FAQs */
.faq-list { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-question {
  position: relative;
  width: 100%;
  padding: 25px 70px 25px 28px;
  border: 0;
  background: var(--white);
  text-align: left;
  font-weight: 550;
  cursor: pointer;
}
.faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  color: var(--blue);
  border-radius: 50%;
  background: #eef3ff;
  text-align: center;
  line-height: 30px;
  font-size: 19px;
}
.faq-item.open .faq-question::after { content: "–"; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer p { margin: 0; padding: 0 70px 28px 28px; color: var(--muted); }

/* Contact */
.contact-page {
  min-height: calc(100vh - 84px);
  padding: 75px 0 110px;
  background: #f2f5ff;
}
.contact-shell {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.contact-intro {
  display: flex;
  min-height: 700px;
  flex-direction: column;
  justify-content: space-between;
  padding: 58px;
  color: var(--white);
  background:
    radial-gradient(circle at 30% 0, rgba(255,255,255,.28), transparent 32%),
    linear-gradient(160deg, #91aaef 0%, #547cec 48%, #2f65ed 100%);
}
.contact-intro .eyebrow { justify-content: flex-start; color: rgba(255,255,255,.8); }
.contact-intro h1 { margin: 30px 0 24px; font-size: clamp(50px, 5vw, 76px); font-weight: 400; line-height: .98; letter-spacing: -.06em; }
.contact-intro p { max-width: 480px; color: rgba(255,255,255,.78); }
.contact-notes { display: grid; gap: 11px; margin-top: 40px; }
.contact-notes span { font-size: 13px; }
.contact-form { display: grid; align-content: center; gap: 18px; padding: 58px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 12px; font-weight: 600; }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input,
.field select { height: 52px; padding: 0 14px; }
.field textarea { min-height: 145px; resize: vertical; padding: 14px; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47,101,237,.10); }
.contact-form .button { width: 100%; margin-top: 6px; }
.form-note,
.form-status { margin: 0; color: var(--muted); font-size: 11px; text-align: center; }
.form-status { color: var(--green); font-weight: 600; }

/* Blog */
.simple-blog-archive,
.simple-blog-single { padding: 100px 0 130px; }
.simple-blog-heading { margin-bottom: 65px; }
.simple-blog-heading h1,
.simple-single-post h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(64px, 7vw, 105px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.067em;
}
.simple-blog-heading::before {
  content: "Journal";
  display: block;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.simple-post-heading { margin-bottom: 58px; text-align: left; }
.simple-post-heading .eyebrow { justify-content: flex-start; }
.simple-post-heading h1 { margin: 28px 0 18px; }
.simple-post-heading > p { margin: 0; color: var(--muted); font-size: 14px; }
.simple-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.simple-post-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.simple-post-image { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--soft); }
.simple-post-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s ease; }
.simple-post-card:hover img { transform: scale(1.035); }
.simple-post-copy { padding: 25px; }
.simple-post-copy h2 { margin: 0 0 12px; font-size: 24px; font-weight: 500; line-height: 1.12; letter-spacing: -.04em; }
.simple-post-copy p { margin: 0; color: var(--muted); font-size: 14px; }

.simple-single-post { width: min(1000px, calc(100% - 64px)); margin: 0 auto; }
.simple-single-post h1 { font-size: clamp(54px, 6vw, 88px); }
.blog-post-hero-media { margin-top: 60px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; }
.blog-post-hero-media img { display: block; width: 100%; }
.simple-single-content { width: min(760px, 100%); margin: 75px auto 0; }
.simple-single-content h2 { margin: 65px 0 18px; font-size: 39px; font-weight: 500; line-height: 1.08; letter-spacing: -.045em; }
.simple-single-content p,
.simple-single-content li { color: #4f525a; font-size: 18px; line-height: 1.7; }
.simple-single-content a { color: var(--blue); text-decoration: underline; }
.blog-lead { font-size: 24px !important; color: var(--ink) !important; line-height: 1.5 !important; }
.blog-wide-callout { margin: 55px 0; padding: 36px; color: var(--white); border-radius: 18px; background: var(--blue); }
.blog-wide-callout h2 { margin-top: 0; color: var(--white); }
.blog-wide-callout p { color: rgba(255,255,255,.8); }
.simple-site-footer { background: #050505; }

/* Legal */
.legal-shell { padding: 100px 0 130px; }
.legal-card { width: min(900px, calc(100% - 48px)); margin: 0 auto; }
.legal-card h1 { margin: 0 0 20px; font-size: clamp(60px, 7vw, 98px); font-weight: 400; line-height: 1; letter-spacing: -.065em; }
.legal-updated { display: inline-flex; padding: 7px 10px; color: var(--blue); border-radius: 7px; background: #eef3ff; font-size: 11px; font-weight: 600; }
.legal-card h2 { margin: 55px 0 16px; padding-top: 35px; border-top: 1px solid var(--line); font-size: 28px; font-weight: 500; letter-spacing: -.04em; }
.legal-card p,
.legal-card li { color: #50535b; font-size: 16px; line-height: 1.75; }
.legal-note { margin: 40px 0; padding: 25px; border-left: 3px solid var(--blue); background: var(--soft); }

.offer-badge {
  display: inline-flex;
  padding: 9px 13px;
  color: var(--white);
  border-radius: 8px;
  background: var(--blue);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.lifetime-price { margin-top: 28px; font-size: 78px; font-weight: 400; line-height: 1; letter-spacing: -.07em; }
.lifetime-price small { display: block; margin-top: 12px; color: var(--muted); font-size: 14px; letter-spacing: 0; }
.micro-proof { display: flex; justify-content: center; gap: 24px; margin: 24px 0 0; }
.micro-proof li { color: var(--muted); font-size: 12px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .nav { grid-template-columns: 190px 1fr 230px; }
  .nav-links { gap: 22px; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .step-card { border-bottom: 1px solid var(--line); }
  .footer-grid { gap: 35px; }
}

@media (max-width: 980px) {
  .container { width: min(100% - 40px, var(--container)); }
  .site-header { position: sticky; }
  .nav { grid-template-columns: 1fr auto; min-height: 72px; }
  .brand { font-size: 20px; }
  .brand-mark { width: 39px; height: 39px; flex-basis: 39px; }
  .brand-name { font-size: 20px; }
  .nav-actions { grid-column: 2; }
  .desktop-contact,
  .nav-actions > .button { display: none; }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    z-index: -1;
    top: 100%;
    right: -20px;
    left: -20px;
    display: flex;
    width: auto;
    height: calc(100vh - 72px);
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 20px 20px 32px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    background: var(--white);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .nav-open .nav-links { z-index: 999; opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links > a,
  .product-trigger {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 27px;
    font-weight: 450;
    letter-spacing: -.04em;
    text-align: left;
  }
  .nav-links > a::after,
  .product-trigger::after { display: none; }
  .nav-product { width: 100%; }
  .mega-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transition: max-height .35s ease;
  }
  .nav-product.is-open .mega-menu { max-height: 800px; transform: none; }
  .mega-inner { display: block; padding: 14px 0 20px; }
  .mega-intro { display: none; }
  .mega-links { grid-template-columns: 1fr 1fr; gap: 8px; }
  .mega-link { padding: 14px; border: 1px solid var(--line); }
  .mobile-menu-panel {
    display: grid;
    gap: 10px;
    margin-top: 20px;
    padding: 22px;
    border-radius: 16px;
    background: #eef3ff;
  }
  .mobile-menu-kicker { margin: 0 0 5px; font-size: 14px; }
  .mobile-menu-panel .button { width: 100%; }
  .mobile-menu-contact { padding: 10px 0; text-align: center; font-size: 13px; font-weight: 600; }
  .mobile-menu-meta { display: flex; flex-wrap: wrap; gap: 6px; }
  .mobile-menu-meta span { padding: 6px 8px; border-radius: 6px; background: var(--white); font-size: 10px; }

  .hero { padding-top: 72px; }
  .cursor-chip { display: none; }
  .logo-row { grid-template-columns: repeat(3, 1fr); row-gap: 20px; }
  .feature-mosaic { grid-template-columns: 1fr; }
  .clora-feature-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .ui-feature-dashboard { grid-row: auto; min-height: auto; }
  .ui-feature-settings,
  .ui-feature-activity { min-height: auto; }
  .mosaic-large { grid-row: auto; min-height: 700px; }
  .mosaic-wide { grid-column: auto; display: block; min-height: 650px; }
  .mosaic-wide .mosaic-media { top: 230px; left: 28px; border-radius: 16px 16px 0 0; }
  .builder-split,
  .feature-intro,
  .contact-shell { grid-template-columns: 1fr; }
  .feature-intro { gap: 22px; }
  .feature-intro > p { margin: 0; }
  .capability-grid,
  .source-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-content { align-items: flex-start; flex-direction: column; }
  .cta-content .hero-actions { width: 100%; }
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); }
  .contact-intro { min-height: auto; padding: 45px; }
  .contact-form { padding: 45px; }
  .simple-post-grid { grid-template-columns: repeat(2, 1fr); }
  .integration-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .nav-links { right: -14px; left: -14px; }
  .narrow { width: min(100% - 28px, 860px); }
  .section { padding: 90px 0; }
  .hero,
  .page-hero { padding: 58px 0 72px; }
  .hero h1,
  .page-hero h1 { margin-top: 25px; font-size: clamp(48px, 14vw, 66px); }
  .hero-copy > p,
  .page-hero .hero-copy > p { font-size: 16px; }
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-product,
  .page-product-image { margin-top: 45px; border-radius: 12px; }
  .browser-bar { height: 37px; font-size: 10px; }
  .browser-bar b { display: none; }
  .video-play { width: 58px; height: 58px; border-width: 6px; }
  .video-caption { right: 8px; bottom: 8px; padding: 8px 10px; font-size: 10px; }
  .trust { margin-top: 55px; }
  .logo-row { grid-template-columns: repeat(2, 1fr); }
  .section-heading { margin-bottom: 45px; }
  .section-title,
  .builder-copy h2,
  .cta-content h2 { font-size: clamp(42px, 12vw, 57px); }
  .section-heading > p { font-size: 15px; }
  .mosaic-card,
  .mosaic-large,
  .mosaic-wide { min-height: 580px; }
  .mosaic-copy { padding: 28px 24px 20px; }
  .mosaic-card h3 { font-size: 25px; }
  .mosaic-media,
  .mosaic-wide .mosaic-media { right: 18px; left: 18px; }
  .mosaic-media.compact,
  .mosaic-wide .mosaic-media { top: 245px; }
  .integration-band { padding: 90px 0; }
  .integration-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .integration-grid div { min-height: 88px; border-radius: 14px; }
  .integration-grid span { font-size: 15px; }
  .integration-grid small { font-size: 9px; }
  .ui-feature { padding: 26px 22px; }
  .ui-feature h3 { font-size: 26px; }
  .ui-product-shot img { aspect-ratio: 1.02; }
  .proof-section blockquote { font-size: clamp(32px, 9vw, 46px); }
  .metric-grid { grid-template-columns: 1fr; }
  .metric-grid article { min-height: 120px; border-right: 0; border-bottom: 1px solid var(--line); }
  .metric-grid article:last-child { border-bottom: 0; }
  .delivery-journey {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 50px;
  }
  .delivery-journey::before,
  .delivery-journey::after,
  .journey-step:not(:last-child)::after { display: none; }
  .journey-step {
    min-height: 0;
    padding: 24px;
    border-radius: 22px;
  }
  .journey-step h3 {
    margin-top: 24px;
    font-size: 27px;
  }
  .journey-step p {
    min-height: 0;
    margin-bottom: 18px;
  }
  .journey-icon {
    width: 58px;
    height: 58px;
    border-radius: 17px;
  }
  .journey-number {
    top: 22px;
    right: 22px;
  }
  .capability-grid,
  .source-grid,
  .feature-grid,
  .comparison-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .capability-grid article,
  .source-card { min-height: 220px; }
  .cta-footer { padding: 20px 0 55px; }
  .cta-content { min-height: 360px; padding: 30px 24px; border-radius: 18px; }
  .cta-content .hero-actions { margin-top: auto; }
  .footer { padding-top: 55px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:nth-child(4) { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .steps-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .step-card { min-width: 82vw; border-bottom: 0; scroll-snap-align: start; }
  .timeline-item article { grid-template-columns: 1fr; gap: 20px; }
  .plan-comparison-table { overflow: visible; border: 0; }
  .plan-comparison-header { display: none; }
  .plan-comparison-row { grid-template-columns: 1fr 1fr; margin-bottom: 14px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; }
  .plan-comparison-row > div { padding: 18px; }
  .plan-comparison-criterion { grid-column: 1 / -1; border-right: 0 !important; border-bottom: 1px solid var(--line); background: var(--soft); }
  .plan-comparison-value::before { content: attr(data-plan); display: block; margin-bottom: 8px; color: var(--blue); font-size: 10px; font-weight: 700; text-transform: uppercase; }
  .micro-proof { flex-direction: column; gap: 5px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-page { padding: 20px 0 60px; }
  .contact-intro,
  .contact-form { padding: 30px 24px; }
  .contact-intro h1 { font-size: 48px; }
  .simple-blog-archive,
  .simple-blog-single { padding: 70px 0 90px; }
  .simple-post-grid { grid-template-columns: 1fr; }
  .simple-single-post { width: min(100% - 28px, 1000px); }
  .simple-single-post h1,
  .simple-blog-heading h1 { font-size: clamp(50px, 14vw, 66px); }
  .simple-single-content { margin-top: 50px; }
  .simple-single-content h2 { font-size: 32px; }
  .simple-single-content p,
  .simple-single-content li { font-size: 17px; }
}

@media (max-width: 500px) {
  .mega-links { grid-template-columns: 1fr; }
  .mega-link small { display: none; }
  .logo-row span { font-size: 14px; }
  .mosaic-card,
  .mosaic-large,
  .mosaic-wide { min-height: 540px; }
  .mosaic-media.compact,
  .mosaic-wide .mosaic-media { top: 270px; }
  .pricing-card { padding: 30px 24px; }
  .price strong { font-size: 64px; }
  .story-card { min-height: 370px; padding: 28px 24px; }
  .story-copy { font-size: 27px; }
}
