:root {
  --landing-bg: #09090b;
  --landing-bg-secondary: rgba(255, 255, 255, .02);
  --landing-bg-card: rgba(255, 255, 255, .03);
  --landing-border: rgba(255, 255, 255, .06);
  --landing-border-hover: rgba(255, 255, 255, .12);
  --landing-text: #ffffff;
  --landing-text-secondary: rgba(255, 255, 255, .6);
  --landing-text-tertiary: rgba(255, 255, 255, .4);
  --landing-text-muted: rgba(255, 255, 255, .3);
  --landing-accent-1: #ffbd60;
  --landing-accent-2: #ff6c40;
  --landing-gradient: linear-gradient(90deg, var(--landing-accent-1), var(--landing-accent-2));
  --landing-glow-color: rgba(255, 140, 80, .15);
  --landing-glow-hover: rgba(255, 140, 80, .3);
  --landing-btn-secondary-bg: rgba(255, 255, 255, .08);
  --landing-pill-bg: rgb(255 194 162 / 11%);
  --landing-pill-border: rgba(255, 140, 80, .2);
  --landing-font: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --landing-radius-sm: 12px;
  --landing-radius-md: 20px;
  --landing-radius-lg: 24px;
  --landing-radius-full: 100px;
  --mock-bg: #0e0d0c;
  --mock-panel: #141311;
  --mock-line: rgba(239, 231, 219, .1);
  --mock-text: #efebe4;
  --mock-muted: #89857e;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--landing-bg);
  color: var(--landing-text);
  font-family: var(--landing-font);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.c-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--landing-bg);
}

.c-nav-container {
  position: fixed;
  top: max(1rem, env(safe-area-inset-top, 0px));
  left: 0;
  right: 0;
  margin-inline: auto;
  z-index: 1000;
  display: flex;
  justify-content: center;
  width: min(1200px, calc(100% - 3rem));
  max-width: calc(100% - (2 * max(1.5rem, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px))));
}

.c-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: .5rem .5rem .5rem 1.5rem;
  background: #ffffff08;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--landing-radius-full);
}

.c-nav__logo-link {
  display: flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
}

.c-nav__mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--landing-text);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.c-nav__mark svg {
  width: 66%;
  height: 66%;
  fill: var(--landing-bg);
}

.c-nav__logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.02em;
  background: var(--landing-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.c-nav__menu {
  display: flex;
  align-items: center;
}

.c-nav__menu-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.c-nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.c-nav__link {
  color: var(--landing-text-secondary);
  text-decoration: none;
  font-size: .875rem;
  transition: color .2s;
}

.c-nav__link:hover { color: var(--landing-text); }

.c-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.5rem;
  background: #e3e3e3;
  border: none;
  border-radius: var(--landing-radius-full);
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .2s;
}

.c-cta-btn:hover { opacity: .9; }

.c-cta-btn__label {
  color: var(--landing-bg);
  font-size: .875rem;
  font-weight: 600;
}

.c-nav__burger {
  display: none;
  background: transparent;
  border: none;
  color: var(--landing-text);
  cursor: pointer;
  padding: .5rem;
}

.c-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--landing-bg);
  z-index: 2000;
  flex-direction: column;
  padding: 1.5rem;
}

.c-mobile-menu.is-open { display: flex; }

.c-mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.c-mobile-menu__close {
  background: none;
  border: none;
  color: var(--landing-text);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
}

.c-mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem 0;
}

.c-mobile-menu__links a {
  color: var(--landing-text);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
}

.c-main {
  flex: 1;
  padding-top: 0;
}

.c-section-wrap {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
}

.c-hero {
  position: relative;
  padding: 8.5rem 0 5rem;
  overflow: hidden;
}

.c-hero__container {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.05fr);
  gap: 3.5rem;
  align-items: center;
}

.c-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.c-hero__glow {
  position: absolute;
  inset: 10% 8% auto;
  height: 70%;
  background: radial-gradient(ellipse at center, var(--landing-glow-color), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.heading-xl {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.01em;
  margin: 0;
}

.paragraph-new {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--landing-text-secondary);
}

.cc-hero-subheading { margin: 1.25rem 0 0; max-width: 34rem; }

.c-hero__store-badges {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.c-store-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  padding: .625rem 1.15rem;
  background: #fff;
  border: none;
  border-radius: var(--landing-radius-sm);
  text-decoration: none;
  color: #000;
  cursor: pointer;
  transition: all .2s;
}

.c-store-badge:hover {
  opacity: .9;
  transform: scale(1.02);
}

.c-store-badge__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.c-store-badge__text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.c-store-badge__label {
  font-size: .625rem;
  opacity: .7;
  line-height: 1.2;
}

.c-store-badge__name {
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.2;
}

.c-hero__meta {
  margin-top: 1rem;
  font-size: .8125rem;
  color: var(--landing-text-tertiary);
}

.c-problem-statement {
  padding: 5rem 0 4rem;
}

.c-problem-statement__container { max-width: 46rem; margin: 0 auto; text-align: center; }

.heading-md {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.25;
  margin: 0;
}

.cc-thin { font-weight: 400; }
.cc-center { text-align: center; }

.c-problem-statement__highlighted-word { color: var(--landing-text-muted); }
.c-problem-statement__highlighted-word.cc-active {
  background: var(--landing-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}

.c-core-features { padding: 2rem 0 5rem; }

.c-core-features__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.c-pill-label {
  display: inline-block;
  padding: .5rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--landing-accent-2);
  background: var(--landing-pill-bg);
  border-radius: var(--landing-radius-full);
}

.c-pill-label.cc-feature-1 { color: var(--landing-accent-1); }
.c-pill-label.cc-feature-2 { color: var(--landing-accent-2); }
.c-pill-label.cc-feature-3 { color: #ffd08a; }

.c-core-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
}

.c-core-feature.cc-reversed { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
.c-core-feature.cc-reversed .c-core-feature__copy { order: 2; }
.c-core-feature.cc-reversed .c-core-feature__visual { order: 1; }

.c-core-feature__copy { max-width: 28rem; }

.heading-sm {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  letter-spacing: -.02em;
  margin: .75rem 0 0;
}

.paragraph-feature {
  margin: 1rem 0 0;
  color: rgba(173, 168, 188, .75);
  font-size: 1.05rem;
  line-height: 1.65;
}

.c-core-feature .c-cta-btn {
  margin-top: 1.5rem;
  background: #242322;
}

.c-core-feature .c-cta-btn__label { color: var(--landing-text); font-weight: 500; }

.c-core-feature__visual {
  background: var(--landing-bg-card);
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius-lg);
  padding: 1.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
  min-height: 280px;
}

.c-cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.c-cta-section__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--landing-glow-color), transparent 65%);
  pointer-events: none;
}

.c-cta-section__container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.cc-gradient-text {
  background: var(--landing-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.c-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: var(--landing-radius-full);
  text-decoration: none;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all .3s;
  background: #ffffff1a;
  backdrop-filter: blur(20px);
  color: var(--landing-text);
}

.c-hero__cta:hover { background: #ffffff26; transform: scale(1.03); }

.c-faq { padding: 2rem 0 6rem; }

.c-faq__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.c-faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.c-faq__item {
  background: var(--landing-bg-card);
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius-md);
  overflow: hidden;
}

.c-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  color: var(--landing-text);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.c-faq__icon { flex-shrink: 0; transition: transform .2s; }
.c-faq__item.is-open .c-faq__icon { transform: rotate(180deg); }

.c-faq__answer {
  display: none;
  padding: 0 1.25rem 1.15rem;
  color: var(--landing-text-secondary);
}

.c-faq__item.is-open .c-faq__answer { display: block; }
.c-faq__answer p { margin: 0; line-height: 1.65; }

.c-footer {
  padding: 4rem 0 2.5rem;
  border-top: 1px solid var(--landing-border);
}

.c-footer__container {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
}

.c-footer__grid {
  display: grid;
  grid-template-columns: minmax(200px, .8fr) 1.2fr;
  gap: 3rem;
}

.c-footer__logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.02em;
  background: var(--landing-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.c-footer__slogan {
  display: block;
  margin-top: .4rem;
  color: var(--landing-text-secondary);
  font-size: .95rem;
}

.c-footer__copy {
  margin: 1.25rem 0 0;
  color: var(--landing-text-tertiary);
  font-size: .8125rem;
}

.c-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.c-footer__column-title {
  margin: 0 0 .85rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--landing-text-tertiary);
}

.c-footer__link {
  display: block;
  width: fit-content;
  margin-bottom: .55rem;
  color: var(--landing-text-secondary);
  text-decoration: none;
  font-size: .9rem;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.c-footer__link:hover { color: var(--landing-text); }

/* Product mocks */
.mock {
  background: var(--mock-bg);
  border: 1px solid var(--mock-line);
  border-radius: 16px;
  overflow: hidden;
  color: var(--mock-text);
  font-size: 13px;
  min-height: 250px;
}

.mock--notch {
  width: min(100%, 420px);
  border-radius: 18px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, .5);
}

.mock__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--mock-line);
  background: #12110f;
}

.mock__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a3834;
}

.mock__title {
  margin-left: 4px;
  color: var(--mock-muted);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.mock__row {
  display: flex;
  min-height: 220px;
}

.mock__nav {
  width: 92px;
  padding: 10px 8px;
  border-right: 1px solid var(--mock-line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock__nav-item {
  padding: 7px 8px;
  border-radius: 8px;
  color: var(--mock-muted);
}

.mock__nav-item.is-active {
  background: #1a1815;
  color: var(--mock-text);
}

.mock__body { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 8px; }

.mock__line {
  height: 10px;
  border-radius: 99px;
  background: rgba(239, 231, 219, .12);
}

.mock__line.w-80 { width: 80%; }
.mock__line.w-60 { width: 60%; }
.mock__line.w-40 { width: 40%; }
.mock__line.w-30 { width: 30%; }

.mock__note {
  padding: 10px 12px;
  border-radius: 10px;
  background: #161512;
  border: 1px solid var(--mock-line);
}

.mock__note-title { font-weight: 600; margin-bottom: 6px; }

.mock__task {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--mock-line);
}

.mock__check {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(239, 231, 219, .34);
  border-radius: 4px;
  flex-shrink: 0;
}

.mock__check.is-on {
  background: var(--mock-text);
  border-color: var(--mock-text);
}

.mock__cal {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.mock__day {
  min-height: 72px;
  border-radius: 8px;
  background: #161512;
  padding: 6px;
  border: 1px solid var(--mock-line);
}

.mock__event {
  margin-top: 8px;
  height: 18px;
  border-radius: 4px;
  background: #efebe4;
}

.mock__event.cc-2 { width: 70%; background: #ff6c40; }
.mock__clip {
  padding: 8px 10px;
  border-radius: 8px;
  background: #161512;
  color: var(--mock-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.mock__codes {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 28px 0 8px;
}

.mock__digit {
  width: 36px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #1a1815;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .02em;
}

.mock__translate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  height: 100%;
}

.mock__pane {
  padding: 12px;
  border-radius: 10px;
  background: #161512;
  border: 1px solid var(--mock-line);
  min-height: 160px;
}

.mock__pane-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--mock-muted);
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .c-nav-container { width: calc(100% - 2rem); }
  .c-nav__links { display: none; }
  .c-nav__burger { display: block; }
  .c-hero { padding: 7rem 0 3.5rem; }
  .c-hero__container,
  .c-core-feature,
  .c-core-feature.cc-reversed {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .c-core-feature.cc-reversed .c-core-feature__copy,
  .c-core-feature.cc-reversed .c-core-feature__visual { order: unset; }
  .c-hero__content, .c-core-feature__copy { text-align: center; max-width: none; }
  .cc-hero-subheading { margin-left: auto; margin-right: auto; }
  .c-hero__store-badges { justify-content: center; }
  .c-hero__visual { order: -1; }
  .c-footer__grid, .c-footer__columns { grid-template-columns: 1fr; }
}
