/* noto-sans-kr-300 - korean */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 300;
  src: url("/fonts/NotoSansKR/noto-sans-kr-v39-korean-300.woff2")
    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-kr-regular - korean */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/NotoSansKR/noto-sans-kr-v39-korean-regular.woff2")
    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-kr-500 - korean */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/NotoSansKR/noto-sans-kr-v39-korean-500.woff2")
    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-kr-600 - korean */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/NotoSansKR/noto-sans-kr-v39-korean-600.woff2")
    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-kr-800 - korean */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 800;
  src: url("/fonts/NotoSansKR/noto-sans-kr-v39-korean-800.woff2")
    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-kr-900 - korean */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 900;
  src: url("/fonts/NotoSansKR/noto-sans-kr-v39-korean-900.woff2")
    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", "Noto Sans KR", sans-serif;
  word-break: keep-all;
  background: #fff;
  color: #141414;
  position: relative;
}
body.no-scroll {
  overflow: hidden;
  overscroll-behavior: contain;
}
a {
  color: inherit;
}
:focus-visible {
  outline: 2px solid #6a60f7;
  outline-offset: 2px;
  border-radius: 8px;
}
button {
  font-family: inherit;
  cursor: pointer;
}
img,
video {
  max-width: 100%;
}

/* ---------- NAV ---------- */
.nav {
  display: flex;
  align-items: center;
  padding: 16px 48px;
  border-bottom: 1px solid #efefef;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-logo {
  flex: 1;
  display: flex;
  align-items: center;
}
.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #4a4a4a;
  text-decoration: none;
}
.nav-links a:hover {
  color: #141414;
}
.nav-cta {
  flex: 1;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}
.nav-lang {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgb(245, 245, 245);
  border-radius: 8px;
  padding: 2px;
}
.nav-lang-option {
  height: 26px;
  padding: 0px 10px;
  border-radius: 6px;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  line-height: 28px;

  background: transparent;
  color: rgb(154, 154, 154);
  box-shadow: none;
}
.nav-lang-active {
  background: rgb(255, 255, 255);
  color: rgb(20, 20, 20);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 3px;
}
/* ---------- BUTTONS ---------- */
.btn {
  white-space: nowrap;
  height: 42px;
  padding: 0 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.16s ease;
  border: 1px solid #e2e2e2;
  background: #fff;
  color: #5c5c5c;
  text-decoration: none;
}
.btn:hover {
  border-color: #b9b9b9;
  color: #141414;
  transform: scale(1.03);
}
.btn-tinted {
  background: #eeedfe;
  color: #4b41be;
  border: 1px solid #d9d5f5;
  font-weight: 600;
}
.btn-tinted:hover {
  background: #e3e0fa;
  border-color: #c9c4f0;
  color: #4b41be;
  transform: scale(1.03);
}
.btn-dark {
  background: #141414;
  color: #fff;
  border: none;
  font-weight: 600;
}
.btn-dark:hover {
  background: #2a2a2a;
  color: #fff;
  transform: scale(1.03);
}

/* --- WAITLIST --- */
.waitlist {
  display: none;
}
.waitlist.active {
  display: block;
}
.waitlist-outer {
  position: fixed;
  inset: 0px;
  background: rgba(20, 18, 30, 0.55);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.waitlist-inner {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: rgb(255, 255, 255);
  border-radius: 20px;
  border: 1px solid rgb(236, 236, 236);
  box-shadow: rgba(20, 15, 50, 0.25) 0px 30px 80px;
  padding: 40px;
  margin: 20px;
  text-align: center;
  overflow: hidden;
}
.waitlist-gradient {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(60px);
  background: radial-gradient(
    circle,
    rgba(106, 96, 247, 0.18),
    transparent 70%
  );
  pointer-events: none;
}
.waitlist-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgb(226, 226, 226);
  background: rgb(255, 255, 255);
  color: rgb(154, 154, 154);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.waitlist-content {
}
.waitlist-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(240, 239, 251);
  border: 1px solid rgb(222, 219, 247);
  padding: 6px 14px;
  border-radius: 24px;
  font-size: 11px;
  font-weight: 600;
  color: rgb(60, 52, 137);
  margin-bottom: 20px;
}
.waitlist-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(106, 96, 247);
}
.waitlist-header {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: rgb(20, 20, 20);
  line-height: 1.2;
  margin-bottom: 10px;
}
.waitlist-body {
  font-size: 14px;
  color: rgb(92, 92, 92);
  line-height: 1.6;
  margin: 0px 0px 24px;
}
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.waitlist-email {
  height: 46px;
  padding: 0px 16px;
  border-radius: 10px;
  border: 1px solid rgb(226, 226, 226);
  font-size: 15px;
  font-family: inherit;
  color: rgb(20, 20, 20);
  outline: none;
}
.waitlist-submit-btn {
  height: 46px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  background: rgb(106, 96, 247);
  color: rgb(255, 255, 255);
  border-style: none;
}
.waitlist-detail {
  font-size: 11px;
  color: rgb(173, 173, 173);
  margin-top: 12px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-glow-1 {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(80px);
  background: radial-gradient(circle, rgba(106, 96, 247, 0.1), transparent 70%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  top: 280px;
  left: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(80px);
  background: radial-gradient(
    circle,
    rgba(106, 96, 247, 0.07),
    transparent 70%
  );
  pointer-events: none;
}
.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 88px 48px 16px;
  position: relative;
  text-align: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0effb;
  border: 1px solid #dedbf7;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #3c3489;
  margin-bottom: 24px;
}
.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6a60f7;
}
.hero-h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.7px;
  color: #141414;
  margin: 0 0 24px;
}
.hero-h1 em {
  font-style: normal;
  color: #6a60f7;
}
:lang(ko) .hero-h1 {
  letter-spacing: -0.5px;
  line-height: 1.3;
}
.hero-p {
  font-size: 18px;
  line-height: 1.65;
  color: #5c5c5c;
  max-width: 520px;
  margin: 0 auto 32px;
}
.hero-btns {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}
.hero-btn-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-btn-primary {
  width: 200px;
}
.hero-caption {
  font-size: 11px;
  color: #adadad;
}

.hero-shot {
  max-width: 940px;
  margin: 0 auto;
  padding: 40px 48px 88px;
}
.video-frame {
  border: 1px solid #ececec;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(99, 90, 214, 0.14);
  background: #fff;
}
.video-topbar {
  background: #fafafa;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #efefef;
}
.video-topbar .tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.video-topbar .url {
  margin-left: 8px;
  font-size: 12px;
  color: #9a9a9a;
}
.video-ratio {
  width: 100%;
  aspect-ratio: 2084 / 1482;
  overflow: hidden;
  background: #f7f7f8;
}
.video-ratio video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------- SECTION SHARED ---------- */
.section-alt {
  background: #fafaf9;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #6a60f7;
  margin-bottom: 12px;
}
.h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #141414;
  line-height: 1.15;
  margin: 0 0 12px;
}
:lang(ko) .h2 {
  letter-spacing: -0.3px;
  line-height: 1.35;
}
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head p {
  font-size: 17px;
  color: #5c5c5c;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- PROBLEM ---------- */
.problem {
  padding: 88px 48px;
}
.problem-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.problem-text .h2 {
  font-size: 38px;
  margin-bottom: 16px;
}
.problem-text .eyebrow {
  margin-bottom: 16px;
}
.problem-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #5c5c5c;
  margin: 0;
}
.problem-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  color: #5c5c5c;
  line-height: 1.5;
}
.x-icon {
  width: 18px;
  height: 18px;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 9px;
  color: #dc2626;
  font-weight: 800;
}
.quote-card {
  background: #fff;
  border: 1px solid #ececec;
  border-left: 3px solid #6a60f7;
  border-radius: 0 12px 12px 0;
  padding: 32px;
}
.quote-card .quote {
  font-size: 20px;
  font-weight: 700;
  color: #141414;
  line-height: 1.35;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.quote-card .attrib {
  font-size: 13px;
  color: #9a9a9a;
}

/* ---------- FEATURES ---------- */
.features {
  padding: 96px 48px;
}
.features-inner,
.pricing-inner,
.who-inner,
.faq-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  border-color: #cecbf6;
}
.feature-icon {
  width: 42px;
  height: 42px;
  background: #eeedfe;
  border: 1px solid #cecbf6;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a60f7;
  margin-bottom: 16px;
}
.feature-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #141414;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: #5c5c5c;
  line-height: 1.65;
  margin: 0;
}
.feature-mock {
  margin-top: 16px;
  border: 1px solid #ececec;
  border-radius: 10px;
  height: 120px;
  overflow: hidden;
  position: relative;
}

/* feature 1: record & share */
.mock-record {
  background: #fbfbfa;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-record .preview {
  flex: 1;
  border-radius: 7px;
  background: linear-gradient(135deg, #eeedfe, #f5f4ff);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-record .rec-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.85);
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  color: #dc2626;
}
.mock-record .rec-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dc2626;
}
.mock-record .play {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #6a60f7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-record .play .tri {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid #fff;
  margin-left: 2px;
}
.mock-record .bar {
  height: 4px;
  border-radius: 2px;
  background: #e6e6e6;
}
.mock-record .bar-fill {
  width: 42%;
  height: 100%;
  border-radius: 2px;
  background: #6a60f7;
}

/* feature 2: co-editable docs */
.mock-docs {
  background: #fff;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-docs .line {
  position: relative;
  height: 7px;
  border-radius: 3px;
  background: #f0f0f0;
}
.mock-docs .line.l1 {
  width: 55%;
  background: #e9e9e9;
}
.mock-docs .line.l2 {
  width: 90%;
}
.mock-docs .line.l3 {
  width: 78%;
}
.mock-docs .line.l4 {
  width: 68%;
}
.mock-docs .line.l5 {
  width: 84%;
}
.mock-docs .cursor {
  position: absolute;
  left: 139px;
  top: -3px;
  width: 2px;
  height: 13px;
  background: #6a60f7;
}
.mock-docs .comment {
  position: absolute;
  border-radius: 8px 8px 8px 2px;
  padding: 4px 9px;
  font-size: 9px;
  font-weight: 600;
}
.mock-docs .comment.aaron {
  top: 34px;
  left: 161px;
  background: #eeedfe;
  border: 1px solid #dedbf7;
  color: #3c3489;
}
.mock-docs .comment.james {
  top: 65px;
  left: 73px;
  border: 1px solid #b9cae9;
  color: #0047cc;
  background-color: #dfebff;
}
.mock-docs .comment-cursor {
  position: absolute;
  top: 75px;
  left: 67px;
  width: 2px;
  height: 13px;
  background: #6a60f7;
}
.mock-docs .avatars {
  position: absolute;
  bottom: 12px;
  right: 14px;
  display: flex;
}
.mock-docs .avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
}
.mock-docs .avatar.a {
  background: #eeedfe;
  color: #3c3489;
}
.mock-docs .avatar.j {
  background-color: #dfebff;
  color: #0047cc;
  margin-left: -7px;
}

/* feature 3: transcripts */
.mock-transcript {
  background: #fff;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: center;
}
.mock-transcript .row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.mock-transcript .av {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}
.mock-transcript .av.a {
  background: #eeedfe;
  color: #3c3489;
}
.mock-transcript .av.j {
  background: #dfebff;
  color: #0047cc;
}
.mock-transcript .lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-transcript .lines div {
  height: 6px;
  border-radius: 3px;
  background: #f0f0f0;
}
.mock-transcript .lines div:nth-child(2) {
  background: #f4f4f4;
}
.mock-transcript .lang-pill {
  align-self: flex-start;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f0effb;
  border: 1px solid #dedbf7;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 9px;
  font-weight: 600;
  color: #3c3489;
}
.mock-transcript .lang-pill .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6a60f7;
}

/* ---------- WHO ---------- */
.who {
  padding: 80px 48px;
  text-align: center;
}
.who p {
  font-size: 17px;
  color: #5c5c5c;
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.pill {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #5c5c5c;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6a60f7;
}
.pill-break {
  flex-basis: 100%;
  height: 0;
  display: block;
}

/* ---------- PRICING ---------- */
.pricing {
  padding: 96px 48px;
}
.pricing-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.pricing-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9d5f5;
  transition: background 0.2s ease;
}
.pricing-dots .dot.active {
  background: #6a60f7;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
}
.price-plan {
  font-size: 13px;
  font-weight: 500;
  color: #9a9a9a;
  margin-bottom: 12px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.price-value {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #141414;
}
.price-unit {
  font-size: 13px;
  color: #5c5c5c;
  font-weight: 500;
}
.price-desc {
  font-size: 13px;
  color: #9a9a9a;
  margin-bottom: 24px;
  line-height: 1.5;
  min-height: 32px;
}
.price-btn {
  width: 100%;
  margin-bottom: 24px;
}
.price-features-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 16px;
}
.price-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: #5c5c5c;
  line-height: 1.4;
}
.price-features li.excluded {
  color: #bbbbbb;
}
.check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #eeedfe;
  color: #6a60f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.check.excluded {
  background: #f2f2f2;
  color: #c4c4c4;
}
.soon {
  font-size: 9px;
  font-weight: 700;
  background: #6a60f7;
  color: #fff;
  border-radius: 999px;
  padding: 1px 6px;
  flex-shrink: 0;
  margin-top: 2px;
}

.price-card.featured {
  background: linear-gradient(180deg, #f3f2fd 0%, #fff 130px);
  border: 1px solid #cecbf6;
  position: relative;
  box-shadow: 0 16px 44px rgba(99, 90, 214, 0.12);
}
.recommended-badge {
  position: absolute;
  top: -12px;
  left: 26px;
  background: #6a60f7;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 4px 12px;
  border-radius: 999px;
}
.price-plan.featured {
  color: #6a60f7;
}

/* ---------- HELP ---------- */
.help-wrap {
  padding: 0 48px 48px;
}
.help-card {
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.help-card .title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.7px;
  color: #141414;
  margin-bottom: 8px;
}
.help-card p {
  font-size: 15px;
  color: #5c5c5c;
  margin: 0;
}
.help-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 96px 48px;
}
.faq-inner {
  max-width: 760px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 13px;
  padding: 24px;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
}
.faq-q .q-text {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.1px;
  color: #141414;
}
.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eeedfe;
  color: #6a60f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  line-height: 1;
  flex-shrink: 0;
}
.faq-a {
  display: none;
  font-size: 14px;
  color: #5c5c5c;
  line-height: 1.65;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f2f2f2;
}
.faq-item.open .faq-a {
  display: block;
}

/* ---------- CTA ---------- */
.cta-outer {
  padding: 0 48px 96px;
}
.cta-card {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #1c1830, #2a2356 55%, #211c42);
  border-radius: 24px;
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.cta-glow-1 {
  position: absolute;
  top: -70px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(106, 96, 247, 0.5), transparent 70%);
  filter: blur(45px);
}
.cta-glow-2 {
  position: absolute;
  bottom: -90px;
  left: -50px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(0, 96, 255, 0.3), transparent 70%);
  filter: blur(50px);
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}
.cta-h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
  line-height: 1.15;
  margin: 0 auto 16px;
  max-width: 620px;
}
.cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 32px;
  line-height: 1.6;
}
.cta-content .btn-tinted {
  padding: 0 32px;
}
p.cta-caption {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin: 8px 0 0;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 24px 48px;
  border-top: 1px solid #efefef;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}
.footer .copyright {
  font-size: 13px;
  color: #c4c4c4;
}

/* ---------- MOBILE ---------- */
@media (max-width: 680px) {
  .nav {
    padding: 12px 20px;
  }
  .nav-links {
    display: none;
  }
  .hero-inner {
    padding: 56px 20px 16px;
  }
  .hero-h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }
  .hero-p {
    max-width: 100%;
    font-size: 16px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-btn-col {
    align-items: stretch;
    order: 2;
  }
  .hero-btn-secondary {
    order: 1;
  }
  .hero-btn-primary {
    width: 100%;
  }
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-shot {
    padding: 24px 20px 56px;
  }

  .problem {
    padding: 72px 20px;
  }
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .problem-text {
    order: 2;
  }
  .problem-quote {
    order: 1;
  }

  .features {
    padding: 56px 20px;
    scroll-margin-top: 32px;
  }
  .faq {
    padding: 56px 20px;
  }
  .who {
    padding: 56px 20px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .h2 {
    font-size: 28px;
  }
  .pill-break {
    display: none;
  }

  .pricing {
    padding: 56px 20px;
  }
  .pricing-dots {
    display: flex;
  }
  .pricing-grid {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 24px 40px 48px;
    margin: 0 -20px;
    -webkit-overflow-scrolling: touch;
  }
  .pricing-grid::-webkit-scrollbar {
    display: none;
  }
  .pricing-grid > .price-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }

  .help-wrap {
    padding: 0 20px 32px;
  }
  .help-card {
    padding: 24px;
  }
  .help-btn {
    width: 100%;
    justify-content: center;
  }

  .cta-outer {
    padding: 0 20px 56px;
  }
  .cta-card {
    padding: 40px 24px;
  }
  .cta-h2 {
    font-size: 28px;
  }

  .footer {
    padding: 20px;
  }
}
