@import url("/assets/tauk-theme.css");

:root {
  --canvas-soft: #11151b;
  --border-strong: #3a4252;
  --muted-soft: #7e8799;
  --shadow: 0 30px 100px rgba(0, 0, 0, .38);
  --max: 1180px;
  --radius-sm: var(--tauk-radius-md);
  --radius-md: var(--tauk-radius-lg);
  --radius-lg: var(--tauk-radius-xl);
  --radius-xl: 32px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 70% -10%, rgba(22, 205, 177, .08), transparent 31rem),
    var(--canvas);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(3.3rem, 6.4vw, 6.4rem);
}

h2 {
  font-size: clamp(2.35rem, 4.5vw, 4.25rem);
}

h3 {
  font-size: 1.45rem;
}

::selection {
  background: var(--teal);
  color: #071512;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--teal);
  color: #071512;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

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

.section-shell,
.nav-shell,
.footer-grid,
.footer-bottom {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(42, 47, 61, .72);
  background: rgba(13, 15, 20, .8);
  backdrop-filter: blur(20px);
}

.nav-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 850;
  letter-spacing: -.04em;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-compact img {
  width: 36px;
  height: 36px;
}

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

.desktop-nav a,
.text-link {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 650;
  text-decoration: none;
  transition: color .16s ease;
}

.desktop-nav a:hover,
.text-link:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid var(--teal-strong);
  border-radius: 13px;
  background: linear-gradient(135deg, var(--teal), var(--teal-strong));
  box-shadow: 0 10px 32px rgba(22, 205, 177, .15);
  color: #061713;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.button:hover {
  box-shadow: 0 14px 36px rgba(22, 205, 177, .24);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 42px;
  padding-inline: 16px;
  border-radius: 11px;
  font-size: .9rem;
}

.button-large {
  min-height: 56px;
  padding-inline: 24px;
}

.button-secondary {
  border-color: var(--border-strong);
  background: rgba(21, 24, 33, .72);
  box-shadow: none;
  color: var(--text);
}

.button-secondary:hover {
  border-color: #586174;
  background: var(--surface-raised);
  box-shadow: none;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: grid;
  width: 42px;
  height: 42px;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--surface);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
}

.mobile-menu nav {
  position: absolute;
  top: 52px;
  right: 0;
  display: grid;
  width: 220px;
  overflow: hidden;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #171b24;
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  padding: 12px 13px;
  border-radius: 9px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu nav a:hover {
  background: var(--surface-raised);
  color: var(--text);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(40, 224, 193, .08);
}

.section-heading > p:last-child,
.split-heading > p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

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

.hero {
  display: grid;
  min-height: 700px;
  align-items: center;
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
  padding-block: 90px 100px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
}

.hero h1 em {
  color: var(--teal);
  font-style: normal;
  text-shadow: 0 0 40px rgba(40, 224, 193, .12);
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

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

.hero-fineprint {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--muted-soft);
  font-size: .84rem;
}

.product-preview {
  position: relative;
  min-width: 0;
  padding: 38px 0;
}

.preview-glow {
  position: absolute;
  inset: 12% 8%;
  border-radius: 50%;
  background: rgba(22, 205, 177, .18);
  filter: blur(90px);
}

.browser-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid #353c4a;
  border-radius: 20px;
  background: #11141b;
  box-shadow: 0 45px 120px rgba(0, 0, 0, .58), 0 0 0 1px rgba(255, 255, 255, .02) inset;
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
}

.browser-topbar {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border-bottom: 1px solid #242a35;
  background: #171b23;
}

.browser-topbar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #495163;
}

.browser-topbar > span:first-child {
  background: #f36f79;
}

.browser-topbar > span:nth-child(2) {
  background: #edbd5f;
}

.browser-topbar > span:nth-child(3) {
  background: #5acb8a;
}

.browser-topbar div {
  width: 48%;
  margin-inline: auto;
  padding: 5px 10px;
  border-radius: 7px;
  background: #0e1117;
  color: #7e8799;
  font-size: .63rem;
  text-align: center;
}

.recorder-shell {
  padding: 19px;
}

.recorder-toolbar,
.preview-controls,
.audio-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recorder-toolbar {
  margin-bottom: 16px;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
}

.mini-brand img {
  width: 28px;
  height: 28px;
}

.recording-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid #2f3845;
  border-radius: 99px;
  color: #b6bdca;
  font-size: .6rem;
}

.recording-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.capture-grid {
  display: grid;
  min-height: 250px;
  grid-template-columns: .36fr .64fr;
  gap: 8px;
}

.camera-card,
.screen-card {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  border: 1px solid #303643;
  border-radius: 12px;
  background: linear-gradient(145deg, #242a36, #171b23);
}

.camera-card small,
.screen-card small {
  position: absolute;
  bottom: 8px;
  left: 8px;
  padding: 3px 7px;
  border-radius: 6px;
  background: rgba(7, 10, 14, .66);
  color: #c5ccd8;
  font-size: .52rem;
}

.person-shape {
  position: relative;
  width: 70%;
  aspect-ratio: 1 / 1.1;
  border-radius: 46% 46% 18% 18%;
  background: linear-gradient(180deg, #4d5969, #2c3441);
  transform: translateY(26%);
}

.person-shape span {
  position: absolute;
  top: -31%;
  left: 26%;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #647183;
}

.screen-lines {
  width: 76%;
  padding: 15px;
  border: 1px solid #3a4351;
  border-radius: 9px;
  background: #191d25;
  box-shadow: 0 18px 35px rgba(0, 0, 0, .25);
}

.screen-lines b,
.screen-lines span {
  display: block;
  height: 6px;
  margin-bottom: 9px;
  border-radius: 5px;
  background: #3f4858;
}

.screen-lines b {
  width: 48%;
  height: 10px;
  background: var(--teal-dark);
}

.screen-lines span:nth-child(3) {
  width: 75%;
}

.screen-lines span:last-child {
  width: 58%;
  margin-bottom: 0;
}

.audio-track {
  gap: 16px;
  margin-top: 8px;
  padding: 9px 11px;
  border: 1px solid #2d3340;
  border-radius: 9px;
  background: #151920;
}

.audio-track > span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #aab2c0;
  font-size: .58rem;
  white-space: nowrap;
}

.wave-bars {
  display: flex;
  height: 19px;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.wave-bars i {
  width: 2px;
  height: var(--h);
  min-height: 2px;
  border-radius: 2px;
  background: var(--teal);
  opacity: .72;
}

.preview-controls {
  margin-top: 14px;
  color: #8790a0;
  font-size: .62rem;
}

.preview-button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--teal-strong);
  color: #061713;
  font-weight: 800;
}

.preview-button i {
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.floating-note {
  position: absolute;
  z-index: 2;
  display: flex;
  min-width: 158px;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border: 1px solid #3a4251;
  border-radius: 13px;
  background: rgba(27, 32, 42, .94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .38);
  backdrop-filter: blur(15px);
}

.floating-note > .icon {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.floating-note span {
  display: grid;
}

.floating-note b {
  font-size: .78rem;
}

.floating-note small {
  color: var(--muted);
  font-size: .62rem;
}

.floating-note-download {
  right: -16px;
  bottom: 3px;
  animation: float 5s ease-in-out infinite;
}

.floating-note-share {
  top: 6px;
  left: -25px;
  animation: float 5s 1.3s ease-in-out infinite;
}

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

.trust-strip {
  display: grid;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 26px max(36px, calc((100% - var(--max)) / 2));
  border-block: 1px solid var(--border);
  grid-template-columns: repeat(3, 1fr);
  background: rgba(21, 24, 33, .48);
}

.trust-strip div {
  display: grid;
  gap: 2px;
  padding-inline: 34px;
  border-right: 1px solid var(--border);
}

.trust-strip div:first-child {
  padding-left: 0;
}

.trust-strip div:last-child {
  padding-right: 0;
  border: 0;
}

.trust-strip b {
  font-size: .92rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: .82rem;
}

.how-section,
.use-cases-section,
.pricing-section {
  padding-block: 140px;
}

.how-section .section-heading,
.pricing-section .section-heading {
  margin-bottom: 62px;
}

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

.steps-grid article {
  position: relative;
  min-height: 310px;
  padding: 34px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(32, 36, 48, .5), rgba(21, 24, 33, .5));
}

.steps-grid article:first-child {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.steps-grid article:last-child {
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.steps-grid article + article {
  border-left: 0;
}

.step-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: var(--muted-soft);
  font-size: 2.5rem;
  font-weight: 850;
}

.step-icon,
.choice-icon,
.resource-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 38px;
  place-items: center;
  border: 1px solid #28574f;
  border-radius: 15px;
  background: var(--teal-soft);
  color: var(--teal);
}

.step-icon .icon,
.choice-icon .icon,
.resource-icon .icon {
  width: 25px;
  height: 25px;
}

.steps-grid p,
.choice-card > p,
.use-cases-grid p,
.price-card > p {
  color: var(--muted);
}

.choice-section {
  overflow: hidden;
  padding-block: 130px;
  border-block: 1px solid var(--border);
  background:
    radial-gradient(circle at 22% 45%, rgba(22, 205, 177, .09), transparent 26rem),
    #10131a;
}

.choice-shell {
  display: grid;
  align-items: center;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
}

.choice-heading h2 {
  margin-bottom: 24px;
}

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

.choice-card {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(21, 24, 33, .78);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .18);
}

.choice-card-primary {
  border-color: #28645a;
  background: linear-gradient(145deg, rgba(18, 59, 56, .62), rgba(21, 24, 33, .84));
}

.choice-card h3 {
  min-height: 3.1em;
  margin-bottom: 18px;
  font-size: 1.65rem;
}

.card-label,
.plan-name {
  margin-bottom: 11px;
  color: var(--teal) !important;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.choice-card ul,
.price-card ul,
.deletion-details ul {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.choice-card li,
.price-card li,
.deletion-details li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #d6dbe4;
  font-size: .86rem;
}

.choice-card li .icon,
.price-card li .icon,
.deletion-details li .icon {
  margin-top: .2em;
  color: var(--teal);
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  margin-bottom: 62px;
}

.split-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.use-cases-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  grid-template-columns: repeat(3, 1fr);
}

.use-cases-grid article {
  min-height: 220px;
  padding: 30px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(21, 24, 33, .4);
  transition: background .16s ease, transform .16s ease;
}

.use-cases-grid article:nth-child(3n) {
  border-right: 0;
}

.use-cases-grid article:nth-child(n+4) {
  border-bottom: 0;
}

.use-cases-grid article:hover {
  background: var(--surface);
}

.use-cases-grid article > span {
  display: block;
  margin-bottom: 38px;
  color: var(--teal-dark);
  font-size: .75rem;
  font-weight: 850;
}

.privacy-callout {
  border-block: 1px solid #27524c;
  background:
    radial-gradient(circle at 20% 50%, rgba(40, 224, 193, .14), transparent 27rem),
    linear-gradient(140deg, #10201f, #11151b 55%);
}

.privacy-callout-grid {
  display: grid;
  align-items: center;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px;
  padding-block: 110px;
}

.privacy-callout h2 {
  margin-bottom: 24px;
}

.privacy-callout-grid > div:last-child > p:not(.eyebrow) {
  max-width: 680px;
  color: #bec5d0;
  font-size: 1.05rem;
}

.privacy-art {
  position: relative;
  display: grid;
  min-height: 330px;
  place-items: center;
}

.privacy-art > div {
  position: relative;
  z-index: 2;
  display: grid;
  width: 122px;
  height: 122px;
  place-items: center;
  border: 1px solid #2e786c;
  border-radius: 32px;
  background: linear-gradient(145deg, #174b45, #102d2a);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .32);
  color: var(--teal);
}

.privacy-art > div .icon {
  width: 53px;
  height: 53px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(40, 224, 193, .18);
  border-radius: 50%;
}

.orbit-one {
  width: 230px;
  height: 230px;
}

.orbit-two {
  width: 330px;
  height: 330px;
}

.privacy-points {
  display: grid;
  gap: 9px;
  margin-block: 30px;
}

.privacy-points p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #dce1e8;
  font-size: .9rem;
}

.privacy-points .icon {
  color: var(--teal);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.arrow-link .icon {
  transition: transform .16s ease;
}

.arrow-link:hover .icon {
  transform: translateX(4px);
}

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

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(32, 36, 48, .55), rgba(21, 24, 33, .8));
}

.price-card.featured {
  border-color: #2e7569;
  box-shadow: 0 25px 80px rgba(12, 95, 82, .13);
}

.price {
  margin: 10px 0 0;
  color: var(--text) !important;
  font-size: 3.7rem;
  font-weight: 850;
  letter-spacing: -.06em;
  line-height: 1;
}

.price > span {
  position: relative;
  top: -1.45rem;
  margin-right: 3px;
  color: var(--muted);
  font-size: 1.2rem;
  letter-spacing: 0;
}

.price small {
  margin-left: 7px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: 0;
}

.custom-price {
  padding-block: 7px;
  font-size: 2.8rem;
}

.annual-note {
  margin: 7px 0 26px;
  color: var(--teal) !important;
  font-size: .78rem;
  font-weight: 750;
}

.price-card ul {
  margin-bottom: 32px;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-disclaimer {
  max-width: 800px;
  margin: 28px auto 0;
  color: var(--muted-soft);
  font-size: .8rem;
  text-align: center;
}

.faq-section {
  padding-block: 130px;
  border-block: 1px solid var(--border);
  background: #101319;
}

.faq-shell {
  display: grid;
  align-items: start;
  grid-template-columns: .72fr 1.28fr;
  gap: 80px;
}

.faq-shell .section-heading {
  position: sticky;
  top: 120px;
}

.faq-shell .section-heading h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.faq-shell .section-heading a {
  color: var(--teal);
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #e7eaf0;
  font-size: 1.02rem;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--teal);
  font-size: 1.7rem;
  font-weight: 400;
  transition: transform .16s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 740px;
  margin: -5px 0 28px;
  color: var(--muted);
}

.faq-list details a {
  color: var(--teal);
}

.final-cta {
  display: grid;
  align-items: center;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
  padding-block: 130px;
}

.final-cta-art {
  display: grid;
  min-height: 360px;
  place-items: center;
  border: 1px solid #245a51;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle, rgba(40, 224, 193, .14), transparent 62%),
    #101b1a;
}

.final-cta-art img {
  width: min(180px, 48%);
  height: auto;
  filter: drop-shadow(0 20px 38px rgba(22, 205, 177, .18));
}

.final-cta h2 {
  margin-bottom: 23px;
}

.final-cta > div:last-child > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.site-footer {
  padding: 78px 0 28px;
  border-top: 1px solid var(--border);
  background: #090b0f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 55px;
  padding-bottom: 60px;
}

.footer-brand > p {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--muted);
}

.footer-brand .company-note {
  color: var(--muted-soft);
  font-size: .8rem;
}

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

.footer-grid h2 {
  margin-bottom: 7px;
  color: #dfe3ea;
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a {
  color: var(--muted);
  font-size: .86rem;
  text-decoration: none;
}

.footer-grid > div:not(.footer-brand) a:hover {
  color: var(--teal);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 24px;
  border-top: 1px solid #20242d;
  color: var(--muted-soft);
  font-size: .76rem;
}

.footer-bottom p {
  margin: 0;
}

/* Account pages */
.account-main {
  display: grid;
  min-height: calc(100vh - 76px);
  place-items: center;
  padding: 70px 24px 100px;
}

.account-card {
  width: min(560px, 100%);
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(150deg, rgba(32, 36, 48, .72), rgba(21, 24, 33, .92));
  box-shadow: var(--shadow);
}

.account-card > .brand {
  margin-bottom: 42px;
}

.account-page-compact .site-footer,
.account-page-compact .account-card > .brand {
  display: none;
}

.account-page-compact .account-main {
  min-height: calc(100vh - 76px);
  padding-block: 54px;
}

.account-page-wide .account-card {
  width: min(760px, 100%);
}

.account-card h1 {
  margin-bottom: 16px;
  font-size: clamp(2.3rem, 7vw, 3.8rem);
}

.account-intro {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.02rem;
}

.notice-card {
  margin-block: 26px;
  padding: 22px;
  border: 1px solid #2c5e56;
  border-radius: var(--radius-md);
  background: rgba(18, 59, 56, .48);
}

.notice-card h2 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  letter-spacing: -.01em;
}

.notice-card p {
  margin: 0;
  color: #c2cbc9;
  font-size: .9rem;
}

.stacked-actions {
  display: grid;
  gap: 16px;
}

.signup-success-mark {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 8px 0 24px;
  place-items: center;
  border: 1px solid #2b7464;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 2.1rem;
  font-weight: 900;
}

.confirmation-result {
  display: grid;
}

.confirmation-success-notice {
  margin-top: 0;
}

.signup-success-notice {
  margin-top: 0;
}

.account-steps {
  display: grid;
  gap: 18px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.account-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  align-items: start;
}

.account-steps li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--teal);
  font-weight: 800;
}

.account-steps strong {
  display: block;
  margin: 3px 0 4px;
}

.account-steps p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

.developer-download {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 26px 0 34px;
  padding: 24px;
  border: 1px solid var(--teal-strong);
  border-radius: var(--radius-md);
  background: rgba(40, 224, 193, .08);
}

.developer-download .eyebrow {
  margin-bottom: 5px;
}

.developer-download h2 {
  margin-bottom: 5px;
  font-size: 1.35rem;
  letter-spacing: -.01em;
}

.developer-download p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
}

.developer-download .button {
  max-width: 290px;
  text-align: center;
}

.alpha-install {
  margin: 34px 0;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.alpha-install > h2 {
  margin-bottom: 4px;
  font-size: 1.45rem;
}

.alpha-install code {
  overflow-wrap: anywhere;
  color: #d9e2e0;
  font-size: .78rem;
}

.warning-card {
  border-color: #7b6632;
  background: rgba(82, 63, 20, .32);
}

.download-integrity {
  margin: 20px 0 6px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted);
}

.download-integrity summary {
  cursor: pointer;
  color: var(--text);
  font-size: .84rem;
  font-weight: 800;
}

.download-integrity p {
  margin: 12px 0 4px;
  font-size: .78rem;
}

.fineprint {
  margin-top: 24px;
  color: var(--muted-soft);
  font-size: .78rem;
}

.fineprint a {
  color: var(--teal);
}

.account-form {
  display: grid;
  gap: 17px;
  margin-top: 28px;
}

.account-form label {
  display: grid;
  gap: 7px;
  color: #d3d8e1;
  font-size: .82rem;
  font-weight: 700;
}

.account-form label small {
  color: var(--muted-soft);
  font-size: .72rem;
  font-weight: 500;
}

.account-form input,
.account-form select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: #0e1117;
  color: var(--text);
}

.account-form input::placeholder {
  color: var(--muted-soft);
}

.account-form input:focus,
.account-form select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(40, 224, 193, .12);
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 76px;
}

.password-toggle {
  position: absolute;
  top: 5px;
  right: 5px;
  min-width: 58px;
  height: 40px;
  padding: 0 9px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--teal);
  font: inherit;
  font-size: .76rem;
  font-weight: 750;
  cursor: pointer;
}

.password-toggle:hover {
  background: var(--teal-soft);
}

.password-toggle:focus-visible {
  outline: 3px solid rgba(40, 224, 193, .24);
  outline-offset: 1px;
}

.account-form .button {
  margin-top: 5px;
}

.account-form .button:disabled {
  cursor: wait;
  opacity: .65;
}

.form-message {
  margin-top: 18px;
  padding: 13px 15px;
  border-radius: 11px;
  font-size: .86rem;
}

.form-message.success {
  border: 1px solid #2b7464;
  background: var(--teal-soft);
  color: #a8f4e5;
}

.form-message.error {
  border: 1px solid #6b3039;
  background: #3d1b22;
  color: #ffb5bf;
}

/* Legal and resource pages */
.legal-main,
.resource-main {
  width: min(1040px, calc(100% - 48px));
  margin-inline: auto;
  padding: 100px 0 130px;
}

.legal-hero,
.resource-hero {
  max-width: 820px;
  margin-bottom: 58px;
}

.legal-hero h1,
.resource-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.legal-hero > p:not(.eyebrow),
.resource-hero > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.15rem;
}

.draft-badge {
  display: inline-flex;
  margin-top: 15px;
  padding: 8px 11px;
  border: 1px solid #6b5530;
  border-radius: 9px;
  background: rgba(83, 60, 24, .38);
  color: #f2c97e;
  font-size: .74rem;
  font-weight: 750;
}

.legal-document {
  max-width: 820px;
}

.legal-document section {
  padding-block: 34px;
  border-bottom: 1px solid var(--border);
}

.legal-document h2,
.legal-summary h2 {
  margin-bottom: 16px;
  font-size: 1.55rem;
  letter-spacing: -.025em;
}

.legal-document h3 {
  margin: 27px 0 10px;
  font-size: 1.05rem;
  letter-spacing: -.01em;
}

.legal-document p,
.legal-document li {
  color: #b8c0cd;
}

.legal-document a,
.resource-content a:not(.button) {
  color: var(--teal);
}

.legal-document ul {
  display: grid;
  gap: 8px;
  padding-left: 21px;
}

.legal-summary,
.retention-note,
.report-intro {
  margin-bottom: 26px;
  padding: 26px;
  border: 1px solid #285f56;
  border-radius: var(--radius-md);
  background: rgba(18, 59, 56, .4);
}

.legal-summary p,
.retention-note p,
.report-intro p {
  margin-bottom: 0;
  color: #c9d2d0;
}

.table-wrap {
  overflow-x: auto;
  margin-block: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.legal-document table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.legal-document th,
.legal-document td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: #b8c0cd;
  text-align: left;
  vertical-align: top;
}

.legal-document th {
  background: var(--surface-raised);
  color: var(--text);
  font-size: .8rem;
}

.legal-document tr:last-child td {
  border-bottom: 0;
}

.support-grid,
.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.support-grid article,
.report-grid article {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(21, 24, 33, .64);
}

.support-grid h2,
.report-grid h2 {
  font-size: 1.3rem;
}

.support-grid p,
.report-grid p {
  color: var(--muted);
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-block: 55px;
  padding: 40px;
  border: 1px solid #2a685e;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 5% 50%, rgba(40, 224, 193, .12), transparent 24rem),
    #121a1b;
}

.contact-panel h2 {
  margin-bottom: 10px;
  font-size: 2.1rem;
}

.contact-panel p:not(.eyebrow) {
  max-width: 630px;
  margin-bottom: 0;
  color: var(--muted);
}

.support-notes h2 {
  margin-bottom: 24px;
  font-size: 1.6rem;
}

.support-notes > div {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.support-notes a {
  display: grid;
  gap: 2px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

.support-notes a:last-child {
  border-bottom: 0;
}

.support-notes a:hover {
  background: var(--surface);
}

.support-notes b {
  color: var(--text);
}

.support-notes span {
  color: var(--muted);
  font-size: .83rem;
}

.deletion-steps {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.deletion-steps article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 25px;
  border-bottom: 1px solid var(--border);
}

.deletion-steps article:last-child {
  border-bottom: 0;
}

.deletion-steps article > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 850;
}

.deletion-steps h2 {
  margin-bottom: 7px;
  font-size: 1.25rem;
}

.deletion-steps p {
  margin: 0;
  color: var(--muted);
}

.deletion-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-block: 50px;
}

.deletion-details > div {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(21, 24, 33, .56);
}

.deletion-details h2 {
  font-size: 1.4rem;
}

.deletion-details > div:last-child li {
  display: list-item;
  margin-left: 18px;
  color: var(--muted);
}

.centered-action {
  margin-top: 42px;
  text-align: center;
}

.centered-action p {
  margin-top: 13px;
  color: var(--muted-soft);
  font-size: .78rem;
}

.report-intro {
  margin-bottom: 32px;
}

.report-grid {
  margin-bottom: 42px;
}

@media (max-width: 1080px) {
  .hero {
    gap: 40px;
  }

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

  .choice-heading {
    max-width: 760px;
  }

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

  .price-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .desktop-only {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 75px;
  }

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

  .product-preview {
    width: min(720px, 100%);
    margin-inline: auto;
  }

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

  .trust-strip div,
  .trust-strip div:first-child,
  .trust-strip div:last-child {
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .steps-grid,
  .use-cases-grid,
  .support-grid,
  .report-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid article:first-child,
  .steps-grid article:last-child {
    border-radius: 0;
  }

  .steps-grid article + article {
    border-left: 1px solid var(--border);
  }

  .steps-grid article:first-child {
    border-radius: var(--radius-lg) 0 0 0;
  }

  .steps-grid article:nth-child(2) {
    border-radius: 0 var(--radius-lg) 0 0;
  }

  .steps-grid article:last-child {
    grid-column: 1 / -1;
    min-height: 250px;
    border-top: 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .use-cases-grid article,
  .use-cases-grid article:nth-child(3n),
  .use-cases-grid article:nth-child(n+4) {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .use-cases-grid article:nth-child(2n) {
    border-right: 0;
  }

  .use-cases-grid article:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .privacy-callout-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .privacy-art {
    min-height: 250px;
  }

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

  .faq-shell .section-heading {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .section-shell,
  .nav-shell,
  .footer-grid,
  .footer-bottom,
  .legal-main,
  .resource-main {
    width: min(100% - 28px, var(--max));
  }

  .nav-shell {
    min-height: 68px;
  }

  .nav-actions {
    gap: 9px;
  }

  .nav-actions > .button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 58px 72px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 15vw, 4rem);
  }

  .hero-actions {
    display: grid;
  }

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

  .browser-frame {
    transform: none;
  }

  .capture-grid {
    min-height: 190px;
  }

  .floating-note {
    display: none;
  }

  .how-section,
  .use-cases-section,
  .pricing-section {
    padding-block: 90px;
  }

  .steps-grid,
  .choice-grid,
  .use-cases-grid,
  .pricing-grid,
  .support-grid,
  .report-grid,
  .deletion-details {
    grid-template-columns: 1fr;
  }

  .steps-grid article,
  .steps-grid article:first-child,
  .steps-grid article:nth-child(2),
  .steps-grid article:last-child {
    grid-column: auto;
    border: 1px solid var(--border);
    border-radius: 0;
  }

  .steps-grid article:first-child {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .steps-grid article + article {
    border-top: 0;
  }

  .steps-grid article:last-child {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .choice-section,
  .faq-section {
    padding-block: 90px;
  }

  .choice-card {
    padding: 28px;
  }

  .choice-card h3 {
    min-height: auto;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .use-cases-grid article,
  .use-cases-grid article:nth-child(2n),
  .use-cases-grid article:nth-child(3n),
  .use-cases-grid article:nth-child(n+4),
  .use-cases-grid article:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .use-cases-grid article:last-child {
    border-bottom: 0;
  }

  .privacy-callout-grid {
    gap: 35px;
    padding-block: 80px;
  }

  .privacy-art {
    display: none;
  }

  .price-card,
  .price-card:last-child {
    grid-column: auto;
    padding: 28px;
  }

  .final-cta {
    gap: 40px;
    padding-block: 90px;
  }

  .final-cta-art {
    min-height: 250px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .footer-bottom {
    display: grid;
  }

  .account-card {
    padding: 30px 22px;
  }

  .developer-download {
    grid-template-columns: 1fr;
  }

  .developer-download .button {
    width: 100%;
    max-width: none;
  }

  .legal-main,
  .resource-main {
    padding-block: 70px 95px;
  }

  .contact-panel {
    display: grid;
    padding: 28px;
  }

  .contact-panel .button {
    width: 100%;
  }

  .deletion-steps article {
    grid-template-columns: 44px 1fr;
    gap: 15px;
    padding: 20px;
  }

  .deletion-steps article > span {
    width: 40px;
    height: 40px;
  }
}

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

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