:root {
  color-scheme: light;
  --ink: #171a32;
  --ink-soft: #555b78;
  --ink-muted: #767c99;
  --paper: #f8f8ff;
  --surface: rgb(255 255 255 / 78%);
  --surface-strong: #fff;
  --line: rgb(77 66 154 / 13%);
  --violet: #6855ee;
  --violet-dark: #513dd6;
  --violet-soft: #eeeaff;
  --cyan: #0cccd6;
  --mint: #22c997;
  --shadow-sm: 0 12px 36px rgb(38 31 93 / 8%);
  --shadow-lg: 0 28px 80px rgb(38 31 93 / 16%);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 76px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgb(140 109 255 / 14%), transparent 31rem),
    radial-gradient(circle at 100% 11%, rgb(27 213 212 / 12%), transparent 28rem),
    var(--paper);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

p {
  margin: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

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

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

.section {
  position: relative;
  padding-block: clamp(76px, 9vw, 132px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgb(248 248 255 / 72%);
  backdrop-filter: blur(20px) saturate(1.3);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgb(34 28 86 / 6%);
}

.nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 22px rgb(32 25 86 / 18%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 140ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--violet);
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgb(104 85 238 / 32%);
  outline-offset: 3px;
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), #7b67f7);
  box-shadow: 0 13px 28px rgb(104 85 238 / 25%);
}

.button--primary:hover {
  background: linear-gradient(135deg, var(--violet-dark), var(--violet));
  box-shadow: 0 16px 34px rgb(104 85 238 / 32%);
}

.button--secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgb(255 255 255 / 70%);
  box-shadow: var(--shadow-sm);
}

.button--secondary:hover {
  background: #fff;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.eyebrow>span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
}

.section-heading {
  max-width: 620px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

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

.section-heading h2 {
  margin-top: 14px;
  font-size: clamp(36px, 5vw, 55px);
}

.section-heading>p:last-child {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.6vw, 19px);
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding-top: clamp(60px, 8vw, 110px);
}

.hero-grid {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
  gap: clamp(40px, 5vw, 70px);
}

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

.hero h1 {
  max-width: 680px;
  margin-top: 18px;
  font-size: clamp(44px, 4.5vw, 55px);
  letter-spacing: -.052em;
}

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

.hero-actions--center {
  justify-content: center;
}

.browser-install-links {
  gap: 9px;
}

.browser-install-links .button--primary {
  min-width: 132px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 620;
}

.trust-list span {
  display: inline-grid;
  width: 18px;
  height: 18px;
  margin-right: 4px;
  place-items: center;
  border-radius: 50%;
  color: var(--violet);
  background: var(--violet-soft);
}

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

.hero-glow--one {
  width: 470px;
  height: 470px;
  top: 2%;
  right: -180px;
  background: rgb(109 84 244 / 13%);
}

.hero-glow--two {
  width: 350px;
  height: 350px;
  bottom: 4%;
  left: -170px;
  background: rgb(15 203 211 / 10%);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgb(255 255 255 / 75%);
  border-radius: 28px;
  background: rgb(255 255 255 / 52%);
  box-shadow: var(--shadow-lg);
}

.hero-visual>img {
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  border-radius: 0 0 17px 17px;
  object-fit: contain;
}

.window-bar {
  display: flex;
  height: 34px;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  color: var(--ink-muted);
  background: rgb(255 255 255 / 66%);
  border-radius: 17px 17px 0 0;
  font-size: 10px;
}

.window-bar i,
.browser-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d5d7e6;
}

.window-bar span {
  margin-left: 5px;
}

.floating-proof {
  position: absolute;
  display: grid;
  min-width: 190px;
  gap: 1px;
  padding: 11px 14px;
  border: 1px solid rgb(255 255 255 / 75%);
  border-radius: 14px;
  background: rgb(255 255 255 / 82%);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.floating-proof strong {
  font-size: 12px;
}

.floating-proof span {
  color: var(--ink-muted);
  font-size: 9px;
}

.floating-proof--top {
  top: -31px;
  right: 36px;
}

.floating-proof--bottom {
  bottom: -30px;
  left: 34px;
}

.problem-section {
  background: rgb(255 255 255 / 36%);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.problem-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.problem-card:nth-child(2),
.problem-card:nth-child(3) {
  background: linear-gradient(145deg, rgb(255 255 255 / 82%), rgb(240 237 255 / 78%));
}

.problem-card .number {
  display: block;
  color: var(--violet);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .12em;
}

.problem-card h3 {
  max-width: 470px;
  margin-top: 38px;
  font-size: 25px;
}

.problem-card p {
  margin-top: 16px;
  color: var(--ink-soft);
}

.problem-result {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  margin-top: auto !important;
  font-size: 13px;
}

.problem-result strong {
  display: block;
  margin-bottom: 4px;
  color: var(--violet);
}

.solution-section {
  overflow: hidden;
}

.solution-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.journey-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.journey-list li {
  display: grid;
  position: relative;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 0 0 34px;
}

.journey-list li:not(:last-child)::after {
  position: absolute;
  width: 1px;
  top: 46px;
  bottom: 5px;
  left: 23px;
  content: "";
  background: linear-gradient(var(--violet), rgb(104 85 238 / 12%));
}

.journey-list>li>span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgb(104 85 238 / 23%);
  border-radius: 15px;
  color: var(--violet);
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-weight: 800;
}

.journey-list strong {
  font-size: 18px;
}

.journey-list p {
  margin-top: 7px;
  color: var(--ink-soft);
}

.features-section {
  background: linear-gradient(180deg, rgb(235 232 255 / 55%), transparent 24%);
}

.feature-groups {
  display: grid;
  gap: 72px;
  margin-top: 64px;
}

.feature-group {
  display: grid;
  gap: 26px;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.feature-group--accent,
.feature-group--career {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 32px;
}

.feature-group--accent {
  background: linear-gradient(145deg, rgb(237 233 255 / 65%), rgb(233 249 249 / 55%));
}

.feature-group--career {
  background: linear-gradient(145deg, rgb(238 248 255 / 62%), rgb(247 239 255 / 58%));
}

.feature-group-heading {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.feature-group-heading>span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgb(104 85 238 / 20%);
  border-radius: 14px;
  color: var(--violet);
  background: rgb(255 255 255 / 70%);
  font-size: 11px;
  font-weight: 820;
}

.feature-group-heading h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.feature-group-heading p {
  max-width: 680px;
  margin-top: 7px;
  color: var(--ink-soft);
}

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

.feature-card {
  position: relative;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.feature-card--compact {
  min-height: 440px;
}

.feature-card--detailed {
  min-height: 590px;
}

.feature-card--full {
  grid-column: 1 / -1;
}

.feature-card--violet {
  background: linear-gradient(135deg, rgb(238 234 255 / 88%), rgb(232 247 255 / 82%));
}

.feature-card--growth {
  background: linear-gradient(135deg, rgb(230 253 247 / 86%), rgb(239 235 255 / 88%));
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgb(104 85 238 / 18%);
  border-radius: 15px;
  color: var(--violet);
  background: rgb(255 255 255 / 68%);
  box-shadow: var(--shadow-sm);
  font-size: 21px;
  font-weight: 800;
}

.feature-kicker {
  margin-top: 25px;
  color: var(--violet);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.feature-card h4 {
  display: -webkit-box;
  max-width: none;
  overflow: hidden;
  margin-top: 10px;
  font-size: clamp(21px, 1.8vw, 28px);
  line-height: 1.16;
  text-wrap: balance;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.feature-card>p:not(.feature-kicker) {
  max-width: 680px;
  margin-top: 15px;
  color: var(--ink-soft);
}

.feature-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.feature-details>div {
  padding: 16px;
  border: 1px solid rgb(104 85 238 / 13%);
  border-radius: 15px;
  background: rgb(255 255 255 / 55%);
}

.feature-details strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
}

.feature-details p {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 13px;
}

.feature-value {
  margin-top: 22px;
  padding: 15px;
  border-left: 3px solid var(--violet);
  border-radius: 0 12px 12px 0;
  background: rgb(104 85 238 / 7%);
}

.feature-value strong {
  display: block;
  color: var(--violet);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.feature-value span {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 13px;
}

.feature-card--career {
  background: linear-gradient(145deg, rgb(255 255 255 / 80%), rgb(235 246 255 / 75%));
}

.feature-card--resume {
  background: linear-gradient(145deg, rgb(255 255 255 / 80%), rgb(244 238 255 / 76%));
}

.feature-card--projects {
  background: linear-gradient(145deg, rgb(255 255 255 / 80%), rgb(232 251 245 / 74%));
}

.feature-group--customize {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(145deg, rgb(245 240 255 / 62%), rgb(235 249 255 / 56%));
}

.feature-media {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgb(104 85 238 / 14%);
  border-radius: 16px;
  margin: 24px 0 0;
  background: rgb(239 239 250 / 72%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 70%);
}

.feature-media img,
.feature-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-media video {
  pointer-events: none;
}

.feature-video-play {
  position: absolute;
  z-index: 2;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 999px;
  color: #fff;
  background: rgb(29 31 57 / 82%);
  box-shadow: 0 12px 30px rgb(20 21 42 / 24%);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.feature-video-play:hover {
  background: rgb(64 50 151 / 90%);
}

.feature-video-play:focus-visible {
  outline: 3px solid rgb(104 85 238 / 30%);
  outline-offset: 3px;
}

.feature-video-play[hidden] {
  display: none;
}

.feature-media--wide {
  aspect-ratio: 12 / 5;
}

.feature-media--strip {
  height: 82px;
  aspect-ratio: auto;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.chip-list li {
  padding: 7px 11px;
  border: 1px solid rgb(104 85 238 / 14%);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgb(255 255 255 / 58%);
  font-size: 11px;
  font-weight: 670;
}

.mini-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.mini-list li::before {
  margin-right: 8px;
  color: var(--violet);
  content: "✓";
  font-weight: 800;
}

.mini-list li {
  color: var(--ink-soft);
  font-size: 13px;
}

kbd {
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink-soft);
  background: var(--paper);
  font-size: 9px;
}

.helper-section {
  background: #161a31;
  color: #fff;
}

.helper-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.helper-section .section-heading>p:last-child {
  color: rgb(255 255 255 / 66%);
}

.helper-section .eyebrow {
  color: #aa9cff;
}

.browser-frame {
  position: relative;
  height: 480px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 26px;
  background: #f5f5f8;
  box-shadow: 0 30px 70px rgb(0 0 0 / 28%);
}

.browser-top {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  color: #8b8fa0;
  background: #fff;
  font-size: 10px;
}

.browser-top span {
  margin-left: 8px;
}

.browser-content {
  display: grid;
  gap: 14px;
  padding: 48px 42px;
}

.browser-content span {
  width: 88%;
  height: 13px;
  border-radius: 999px;
  background: #e0e2e9;
}

.browser-content span:nth-child(2) {
  width: 68%;
}

.browser-content span:nth-child(3) {
  width: 93%;
  margin-top: 35px;
}

.browser-content span:nth-child(4) {
  width: 76%;
}

.helper-tab {
  position: absolute;
  display: grid;
  width: 44px;
  height: 92px;
  top: 170px;
  right: 0;
  place-items: center;
  border-radius: 18px 0 0 18px;
  color: #fff;
  background: linear-gradient(var(--violet), #7657f5);
  font-weight: 850;
}

.helper-panel {
  position: absolute;
  display: grid;
  width: 270px;
  top: 92px;
  right: 35px;
  gap: 3px;
  padding: 20px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 20px;
  color: #fff;
  background: #252a40;
  box-shadow: 0 25px 60px rgb(0 0 0 / 28%);
}

.helper-panel small {
  color: rgb(255 255 255 / 50%);
}

.helper-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.helper-panel li {
  padding: 9px;
  border-radius: 9px;
  background: rgb(255 255 255 / 5%);
  font-size: 12px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: rgb(255 255 255 / 78%);
}

.check-list span {
  display: inline-grid;
  width: 21px;
  height: 21px;
  margin-right: 6px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--violet);
  font-size: 11px;
}

.privacy-card {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  align-items: start;
  gap: clamp(24px, 4vw, 55px);
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgb(255 255 255 / 85%), rgb(236 249 250 / 72%));
  box-shadow: var(--shadow-lg);
}

.privacy-mark {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(145deg, var(--violet), var(--cyan));
  box-shadow: 0 18px 36px rgb(104 85 238 / 25%);
  font-size: 31px;
}

.privacy-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 25px;
}

.text-link {
  color: var(--violet);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.privacy-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
}

.privacy-facts div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgb(255 255 255 / 60%);
}

.privacy-facts dt {
  color: var(--ink-muted);
  font-size: 9px;
  font-weight: 760;
  text-transform: uppercase;
}

.privacy-facts dd {
  margin: 3px 0 0;
  font-size: 13px;
  font-weight: 720;
}

.steps-section {
  padding-top: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  margin: 52px 0 0;
  list-style: none;
  counter-reset: steps;
}

.steps-grid li {
  min-height: 230px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.steps-grid>li>span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 13px;
  color: var(--violet);
  background: var(--violet-soft);
  font-weight: 820;
}

.steps-grid h3 {
  margin-top: 40px;
  font-size: 22px;
}

.steps-grid p {
  margin-top: 10px;
  color: var(--ink-soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: clamp(44px, 8vw, 110px);
}

.faq-section .section-heading a {
  color: var(--violet);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgb(38 31 93 / 4%);
}

.faq-list summary {
  position: relative;
  padding: 18px 48px 18px 18px;
  cursor: pointer;
  font-weight: 740;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  display: grid;
  width: 25px;
  height: 25px;
  top: 15px;
  right: 15px;
  place-items: center;
  border-radius: 8px;
  color: var(--violet);
  background: var(--violet-soft);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 18px 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.cta-section {
  padding-top: 30px;
}

.cta-card {
  padding: clamp(42px, 8vw, 88px) 24px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  background: radial-gradient(circle at 82% 10%, rgb(27 218 209 / 35%), transparent 25rem), linear-gradient(135deg, #272a56, #5c47df);
  box-shadow: 0 32px 85px rgb(55 42 154 / 26%);
  text-align: center;
}

.cta-card img {
  margin-inline: auto;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgb(0 0 0 / 25%);
}

.cta-card .eyebrow {
  justify-content: center;
  margin-top: 22px;
  color: #c8c0ff;
}

.cta-card h2 {
  margin-top: 12px;
  font-size: clamp(38px, 5vw, 55px);
}

.cta-card>p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px auto 0;
  color: rgb(255 255 255 / 70%);
  font-size: 18px;
}

.cta-card .button--secondary {
  border-color: rgb(255 255 255 / 18%);
  color: #fff;
  background: rgb(255 255 255 / 10%);
}

.availability-note {
  display: block;
  margin-top: 18px;
  color: rgb(255 255 255 / 55%);
}

.site-footer {
  padding: 65px 0 26px;
  border-top: 1px solid var(--line);
  background: rgb(255 255 255 / 45%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}

.footer-grid>div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-grid>div:first-child p {
  max-width: 300px;
  margin-top: 8px;
  color: var(--ink-muted);
  font-size: 13px;
}

.footer-grid strong {
  margin-bottom: 4px;
  font-size: 12px;
}

.footer-grid>div:not(:first-child) a {
  width: fit-content;
  color: var(--ink-soft);
  font-size: 12px;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--violet);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-top: 42px;
  color: var(--ink-muted);
  font-size: 11px;
}

.legal-hero {
  padding: 70px 0 40px;
}

.legal-hero .section-heading {
  max-width: 760px;
}

.legal-hero h1 {
  margin-top: 14px;
  font-size: clamp(42px, 6vw, 55px);
}

.legal-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: 50px;
  padding-bottom: 100px;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.legal-nav a {
  padding: 8px 10px;
  border-radius: 9px;
  color: var(--ink-soft);
  font-size: 12px;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--violet);
  background: var(--violet-soft);
}

.legal-content {
  max-width: 800px;
}

.legal-content section {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

.legal-content section+section {
  padding-top: 42px;
}

.legal-content h2 {
  font-size: 29px;
}

.legal-content h3 {
  margin-top: 24px;
  font-size: 19px;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content p {
  margin-top: 13px;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-content code {
  padding: 2px 5px;
  border-radius: 5px;
  background: var(--violet-soft);
  font-size: .9em;
}

.notice {
  padding: 17px;
  border: 1px solid rgb(104 85 238 / 20%);
  border-radius: 14px;
  color: var(--ink-soft);
  background: var(--violet-soft);
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 25px;
}

.support-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.support-card h3 {
  margin: 0;
}

.support-card p {
  font-size: 13px;
}

.support-card .button {
  margin-top: 16px;
}

.permission-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.permission-list li {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
}

.permission-list strong {
  display: block;
  color: var(--ink);
}

@media (max-width: 980px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .hero-grid,
  .solution-grid,
  .helper-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .trust-list {
    justify-content: center;
  }

  .hero-visual {
    max-width: 820px;
    margin: 20px auto 0;
    transform: none;
  }

  .problem-card {
    min-height: 340px;
  }

  .feature-card--compact {
    min-height: auto;
  }

  .solution-grid .section-heading,
  .faq-grid .section-heading {
    max-width: 760px;
  }

  .helper-visual {
    order: 2;
  }

  .privacy-card {
    grid-template-columns: 70px 1fr;
  }

  .privacy-facts {
    grid-column: 2;
  }

  .legal-shell {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 72px;
  }

  .nav-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    margin-left: auto;
    place-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgb(255 255 255 / 70%);
  }

  .nav-toggle i {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
  }

  .site-nav {
    position: absolute;
    display: none;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    align-items: stretch;
    gap: 3px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgb(255 255 255 / 96%);
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 10px;
    border-radius: 9px;
    font-size: 14px;
  }

  .site-nav a:hover {
    background: var(--violet-soft);
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: 620px;
    margin-inline: auto;
    font-size: clamp(36px, 9vw, 48px);
    line-height: 1.04;
  }

  .hero-copy .eyebrow {
    max-width: 100%;
    font-size: 10px;
    letter-spacing: .08em;
    text-align: left;
  }

  .floating-proof {
    display: none;
  }

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

  .problem-card {
    min-height: auto;
  }

  .problem-result {
    margin-top: 26px !important;
  }

  .feature-groups {
    gap: 54px;
    margin-top: 48px;
  }

  .feature-group--accent,
  .feature-group--career,
  .feature-group--customize {
    padding: 20px;
    border-radius: 24px;
  }

  .feature-card {
    min-height: auto;
    padding: 24px;
  }

  .feature-details {
    grid-template-columns: 1fr;
  }

  .feature-card--full {
    grid-column: auto;
  }

  .feature-media--wide {
    aspect-ratio: 16 / 9;
  }

  .chip-list {
    margin-top: 24px;
  }

  .browser-frame {
    height: 410px;
  }

  .helper-panel {
    width: 230px;
    right: 24px;
  }

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

  .privacy-facts {
    grid-column: auto;
  }

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

  .steps-grid li {
    min-height: 200px;
  }

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

  .footer-grid>div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .support-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

  .hero-actions .button,
  .privacy-actions .button,
  .cta-card .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    justify-content: start;
    text-align: left;
  }

  .feature-group-heading {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .feature-group-heading>span {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .browser-frame {
    height: 360px;
  }

  .helper-panel {
    width: 205px;
    top: 70px;
    right: 18px;
    padding: 14px;
  }

  .privacy-facts {
    grid-template-columns: 1fr;
  }

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

  .footer-grid>div:first-child {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .button:hover {
    transform: none;
  }
}

@media (forced-colors: active) {

  .button,
  .feature-card,
  .problem-card,
  .privacy-card,
  .faq-list details,
  .career-card {
    border: 1px solid CanvasText;
  }
}
