:root {
  --bg: #ffffff;
  --bg-soft: #fafafc;
  --text: #030911;
  --muted: #56636f;
  --line: #eeeff2;
  --accent: #a470f1;
  --accent-dark: #835ac1;
  --cta: #030911;
  --radius: 8px;
  --container: 1298px;
  --gutter: 48px;
  --label-spacing: 0.18em;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

#crisp-chatbox,
.crisp-client {
  bottom: 96px !important;
  right: 24px !important;
  z-index: 9998 !important;
}

#ketch-fab,
.ketch-fab,
.ketch-preference-button {
  z-index: 9999 !important;
}

.container {
  width: min(var(--container), 100% - 48px);
  margin: 0 auto;
}

.center {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

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

.logo img {
  height: 32px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding: 6px 2px;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.is-active {
  color: var(--text);
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

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

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid #eeeff2;
  background: #ffffff;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  position: relative;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  position: absolute;
  transition: transform 0.2s ease;
}

.nav-toggle span:first-child {
  transform: translateY(-3px);
}

.nav-toggle span:last-child {
  transform: translateY(3px);
}

body.nav-open .nav-toggle span:first-child {
  transform: rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--text);
  color: white;
}

.btn-ghost {
  background: white;
  border-color: var(--line);
  color: var(--text);
}

.btn-light {
  background: white;
  color: var(--text);
  border-radius: var(--radius);
  font-size: 14px;
  padding: 12px 24px;
}

.hero {
  background: var(--bg-soft);
  padding: 128px 0;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: var(--label-spacing);
  font-size: 14px;
  font-weight: 600;
}

h1 {
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.2;
  font-weight: 500;
  max-width: 820px;
}

h2,
h3 {
  line-height: 1.2;
}

.toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px;
  gap: 4px;
  background: white;
}

.toggle-btn {
  width: 108px;
  height: 30px;
  font-size: 12px;
  font-weight: 500;
  background: #f8f9fb;
  border: none;
  cursor: pointer;
  color: var(--text);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.toggle-btn.is-active {
  background: var(--text);
  color: white;
}

.hero-media {
  margin-top: 16px;
  width: 100%;
}

.section {
  padding: 128px 0;
}

main > section {
  position: relative;
}

main > section + section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(var(--container), 100% - var(--gutter));
  height: 1px;
  background: var(--line);
  transform: translateX(-50%);
}

.cta {
  padding-top: 0;
  padding-bottom: 0;
}

.cta::before {
  display: none;
}

.cta + section::before {
  display: none;
}

.section-kicker {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: var(--label-spacing);
  color: var(--accent);
  font-weight: 600;
}

.section-kicker.left {
  text-align: left;
}

h2 {
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 500;
  margin-top: 8px;
}

.section-copy {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}

.narrow-copy {
  max-width: 641px;
}

.center .narrow-copy {
  margin-left: auto;
  margin-right: auto;
}

.stats .section-copy {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 32px;
  margin-top: 32px;
  align-items: start;
}

.stat-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: var(--label-spacing);
  font-weight: 600;
}

.stat-label sup {
  font-size: 0.6em;
  vertical-align: text-top;
}

.stat-value {
  font-size: 50px;
  font-weight: 500;
  margin-top: 8px;
  line-height: 1;
}

.split-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.split-row.stacked {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.split-row.reverse {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-row.reverse .split-text {
  order: 2;
}

.split-row.reverse .split-media {
  order: 1;
}

.split-text h3 {
  font-size: 30px;
  font-weight: 500;
  margin-top: 8px;
}

.split-text p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}

.split-text .section-kicker {
  color: var(--accent);
  margin-top: 0;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 400;
}

.accent {
  color: var(--accent);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.benefit-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.benefit-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
}

.benefit-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--label-spacing);
  color: var(--text);
}

.benefit-copy {
  font-size: 14px;
  color: var(--muted);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.contact-card-icon {
  width: 80px;
  height: 80px;
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.contact-card-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: var(--label-spacing);
  text-transform: uppercase;
  color: var(--text);
}

.contact-card-copy {
  font-size: 14px;
  color: var(--muted);
}

.contact-card-email {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: var(--label-spacing);
  text-transform: uppercase;
  color: var(--accent);
}

.contact-faq .section-copy {
  max-width: 524px;
  margin-left: auto;
  margin-right: auto;
}

.press-hero .hero-subtitle {
  max-width: 669px;
}

.press-logos .section-copy,
.press-screens .section-copy {
  max-width: 666px;
  margin-left: auto;
  margin-right: auto;
}

.press-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.press-logo-grid--wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.press-logo-grid--purple {
  margin-top: 16px;
}

.press-logo-card,
.press-color-card {
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.press-logo-card {
  background: white;
  border: 1px solid var(--line);
  min-height: 209px;
}

.press-color-card {
  min-height: 182px;
  color: #ffffff;
}

.press-color-card--dark {
  background: #030911;
}

.press-color-card--purple {
  background: #a470f1;
}

.press-logo-img {
  height: 32px;
  width: auto;
}

.press-logo-img--full {
  width: 148px;
}

.press-logo-img--symbol {
  width: 28px;
}

.press-logo-divider {
  width: 100%;
  height: 1px;
  background: var(--line);
}

.press-logo-divider--dark {
  background: #353a41;
}

.press-logo-divider--purple {
  background: #b68df4;
}

.press-logo-btn {
  width: 120px;
  height: 48px;
  font-size: 12px;
}

.press-color-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: var(--label-spacing);
  text-transform: uppercase;
}

.press-toggle {
  margin-top: 32px;
}

.press-screenshot {
  margin-top: 32px;
}

.press-screenshot picture,
.press-screenshot img {
  width: 100%;
  display: block;
}

.press-download {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.press-download-divider {
  height: 1px;
  background: var(--line);
  margin-top: 64px;
}

.press-download-btn {
  width: 269px;
  height: 48px;
  font-size: 12px;
}

.legal-hero .hero-inner {
  text-align: left;
  align-items: flex-start;
}

.legal-hero h1 {
  font-size: 50px;
}

.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fafafc;
  border-radius: 8px;
  padding: 10px 16px 10px 2px;
  height: 40px;
}

.legal-meta-bar {
  width: 2px;
  height: 18px;
  border-radius: 1px;
  background: #f97035;
  margin-left: 2px;
}

.legal-meta span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: var(--label-spacing);
  text-transform: uppercase;
  color: var(--muted);
}

.legal-content {
  margin-top: 64px;
}

.legal-section + .legal-section {
  margin-top: 64px;
}

.legal-section h3 {
  font-size: 30px;
  font-weight: 500;
  color: var(--text);
  margin-top: 0;
}

.legal-section p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
}

.legal-section h3 + p {
  margin-top: 20px;
}

.legal-section p + p {
  margin-top: 16px;
}

.legal-section a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-section ul {
  margin: 16px 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.legal-section li {
  margin-bottom: 12px;
}

.legal-section p + ul {
  margin-top: 16px;
}

.legal-section ul + p {
  margin-top: 16px;
}

.section-divider {
  height: 1px;
  background: var(--line);
  margin: 128px 0;
}

.cta-card {
  background: var(--cta);
  color: white;
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.cta-card h2 {
  color: white;
}

.cta-card p {
  font-size: 14px;
  max-width: 700px;
}

.cta-simple-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-simple .section-copy {
  max-width: 616px;
}

.btn-cta {
  margin-top: 16px;
  padding: 12px 24px;
  font-size: 14px;
  border-radius: 8px;
  min-height: 48px;
}

.cta-pill {
  height: 14px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.quote-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

.quote-card p {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.4;
  margin-bottom: 12px;
}

.quote-card span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.quote-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 32px;
}

.faq-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  overflow: hidden;
  margin-top: 64px;
}

.faq-list details {
  position: relative;
}

.faq-list details + details::before {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  top: 0;
  height: 1px;
  background: var(--line);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

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

.faq-icon {
  position: relative;
  width: 12px;
  height: 6px;
  flex: none;
}

.faq-icon img {
  position: absolute;
  inset: 0;
  width: 12px;
  height: 6px;
}

.faq-list details .icon-open {
  opacity: 0;
}

.faq-list details[open] .icon-open {
  opacity: 1;
}

.faq-list details[open] .icon-closed {
  opacity: 0;
}

.faq-panel {
  padding: 0 24px 18px;
}

.faq-list p {
  font-size: 14px;
  font-weight: 400;
  color: #9aa1a9;
}

.pricing-hero .hero-inner {
  gap: 0;
}

.pricing-hero .eyebrow {
  margin-bottom: 4px;
}

.pricing-hero h1 {
  margin-top: 8px;
  font-size: 50px;
}

.hero-subtitle {
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
  max-width: 560px;
}

.individual-hero .hero-subtitle {
  max-width: 433px;
}

.company-hero .hero-subtitle {
  max-width: 373px;
}

.about-hero .hero-subtitle {
  max-width: 549px;
}

.contact-hero h1 {
  font-size: 50px;
}

.contact-hero .hero-subtitle {
  max-width: 669px;
}

.calculator-hero {
  background: var(--bg-soft);
  padding: 128px 0;
}

.calculator-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 600px);
  align-items: center;
  gap: 64px;
}

.calculator-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  max-width: 600px;
}

.calculator-hero h1 {
  font-size: 50px;
  max-width: 560px;
}

.calculator-hero .hero-subtitle {
  max-width: 520px;
  font-size: 16px;
  margin-top: 0;
}

.calculator-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 520px;
}

.calc-card {
  background: white;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid var(--line);
}

.calc-inputs {
  background: #fafafc;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-input-line {
  height: 2px;
  width: 100%;
  background: #030911;
  border-radius: 2px;
}

.calc-input-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.calc-input-row--single {
  grid-template-columns: 1fr;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calc-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.calc-field {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  height: 48px;
  padding: 0 6px 0 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.calc-prefix {
  font-size: 12px;
  color: var(--text);
}

.calc-divider {
  width: 1px;
  height: 18px;
  background: var(--line);
  border-radius: 1px;
}

.calc-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 12px;
  color: var(--text);
  background: transparent;
  font-family: inherit;
  padding: 0;
}

.calc-submit {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  border: none;
  background: #e9ecef;
  color: #9aa1a9;
  font-size: 14px;
  font-weight: 500;
  cursor: default;
}

.calc-submit:disabled {
  opacity: 1;
}

.calc-submit.is-active {
  background: var(--accent);
  color: white;
  cursor: pointer;
}

.calc-input::placeholder {
  color: #bbc1c5;
  font-weight: 500;
}

.calc-divider-line {
  height: 1px;
  background: var(--line);
  border-radius: 2px;
}

.calc-totals {
  background: #f0fffc;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-totals-line {
  height: 2px;
  width: 100%;
  background: #00ddb5;
  border-radius: 2px;
}

.calc-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #d4efea;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.calc-total-row.total {
  font-size: 30px;
  font-weight: 500;
}

.calc-total-note {
  padding-top: 12px;
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}

.calc-underline {
  text-decoration: underline;
}

.calc-disclaimer {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 12px;
  color: #9aa1a9;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  font-weight: 500;
}

.calc-disclaimer img {
  width: 14px;
  height: 16px;
  margin-top: 2px;
}

.calc-disclaimer p {
  line-height: 1.4;
}

.calculator-feature {
  text-align: center;
}

.calculator-feature .section-copy {
  max-width: 606px;
  margin-left: auto;
  margin-right: auto;
}

.calculator-feature .toggle {
  margin-top: 24px;
}

.calculator-widget {
  margin-top: 32px;
}

.calculator-widget + .section-copy {
  margin-top: 32px;
}

.calculator-widget picture,
.calculator-widget img {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.calculator-feature .btn {
  margin-top: 32px;
}

.error-hero {
  padding: 144px 0 160px;
  position: relative;
  overflow: hidden;
}

.error-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  align-items: center;
  gap: 96px;
  position: relative;
  z-index: 1;
}

.error-visual {
  display: flex;
  justify-content: center;
}

.error-visual img {
  width: 100%;
  max-width: 352px;
  height: auto;
}

.error-content {
  max-width: 350px;
}

.error-title {
  font-size: 50px;
  line-height: 1;
}

.error-title-mobile {
  display: none;
}

.error-text {
  margin-top: 24px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.4;
}

.error-content .btn {
  margin-top: 32px;
}

.italic {
  font-style: italic;
}

.coming-soon-body {
  background: var(--bg);
}

.coming-soon {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px;
  overflow: hidden;
}


.coming-soon__content {
  max-width: 620px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.coming-soon__mark {
  width: 28px;
  height: 32px;
}

.coming-soon__content h1 {
  font-size: 50px;
  line-height: 1;
  font-weight: 500;
  color: var(--text);
}

.coming-soon__copy {
  max-width: 571px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

.coming-soon__form {
  margin-top: 12px;
  width: min(400px, 100%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 4px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

.coming-soon__form input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  color: var(--text);
  min-width: 0;
}

.coming-soon__form input::placeholder {
  color: #bbc1c5;
  font-style: normal;
  font-weight: 400;
}

.coming-soon__form input:focus {
  outline: none;
}

.coming-soon__form button {
  border: none;
  background: var(--line);
  color: #9a9da0;
  font-size: 12px;
  font-weight: 500;
  border-radius: 6px;
  padding: 8px 12px;
  height: 38px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.coming-soon__form button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.coming-soon__form input[type="email"]:valid ~ button {
  background: var(--accent);
  color: #ffffff;
}

.coming-soon__status {
  min-height: 18px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

.coming-soon__status.is-error {
  color: #c0392b;
}

.waitlist-success-body {
  background: var(--bg);
}

.waitlist-success {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px;
}

.waitlist-success__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.waitlist-success__mark {
  width: 28px;
  height: 32px;
}

.waitlist-success__content h1 {
  font-size: 50px;
  line-height: 1;
  font-weight: 500;
  color: var(--text);
}

.waitlist-success__copy {
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

.waitlist-success__button {
  margin-top: 8px;
  padding: 12px 28px;
  border-radius: 12px;
  background: #0b1118;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(3, 9, 17, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-success__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(3, 9, 17, 0.16);
}


.etymology-lede {
  max-width: 641px;
  margin-left: auto;
  margin-right: auto;
}

.etymology-body {
  max-width: 779px;
  margin-left: auto;
  margin-right: auto;
}

.etymology-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.etymology-card {
  background: #030911;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
  color: white;
}

.etymology-icon {
  height: 12px;
}

.etymology-card p {
  font-size: 14px;
  color: white;
}

.about-card {
  background: #fafafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-card-icon {
  width: 38px;
  height: 38px;
}

.about-card-quote {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

.about-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.about-card-name {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--label-spacing);
  color: var(--text);
}

.about-card-title {
  color: var(--accent);
  font-weight: 600;
  margin-top: 2px;
}

.about-card-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.about-card-social img {
  width: 16px;
  height: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.values .section-copy {
  max-width: 641px;
  margin-left: auto;
  margin-right: auto;
}

.values-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: white;
}

.values-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 32px;
}

.values-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--label-spacing);
  color: var(--text);
}

.values-copy {
  font-size: 14px;
  color: var(--muted);
}

.greener-stats {
  display: flex;
  gap: 64px;
  margin-top: 16px;
}

.greener-stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.greener-value {
  font-size: 50px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}

.greener-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: var(--label-spacing);
  color: var(--muted);
  font-weight: 600;
}

main > section.no-divider::before {
  display: none;
}

.pricing-card {
  background: #030911;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  color: white;
}

.pricing-headline {
  text-align: center;
  max-width: 720px;
}

.pricing-title {
  font-size: 30px;
  font-weight: 500;
}

.pricing-page h2 {
  font-size: 30px;
}

.pricing-copy {
  font-size: 14px;
  color: #bbc1c5;
  margin-top: 8px;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 8px;
  background: #0f1926;
  border: 1px solid #223246;
}

.billing-btn {
  width: 108px;
  height: 30px;
  border-radius: 4px;
  border: none;
  background: transparent;
  color: #bbc1c5;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.billing-btn.is-active {
  background: var(--accent);
  color: white;
}

.pricing-divider,
.plan-divider {
  width: 100%;
  height: 1px;
  background: #223246;
  border-radius: 2px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.plan-card {
  background: #0f1926;
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: white;
}

.plan-spark {
  width: 24px;
  height: 24px;
}

.plan-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.plan-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.plan-desc {
  font-size: 14px;
  color: #9aa1a9;
  margin-top: 2px;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
  white-space: nowrap;
}

.plan-price .price {
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}

.plan-price .price-period {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 6px;
}

.plan-features {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  flex: none;
}

.plan-cta {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  border: none;
  background: var(--accent);
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.plan-vat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #78828c;
}

.info-icon {
  width: 16px;
  height: 16px;
  flex: none;
}

.blog-widget {
  background: #030911;
  border-bottom: 1px solid #343b43;
  color: white;
  padding: 64px 0;
}

.blog-widget-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.blog-widget-text h3 {
  font-size: 30px;
  font-weight: 500;
}

.blog-widget-text p {
  font-size: 14px;
  color: #bbc1c5;
}

.blog-widget-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
  padding: 0 24px;
  border-radius: 8px;
  background: #0f1926;
  border: 1px solid #000000;
  color: white;
}

.blog-widget-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #6f7bff, #2f3cf4 45%, #0b0f26 100%);
}

.blog-widget-divider {
  width: 1px;
  height: 28px;
  background: #223246;
}

.blog-widget-arrow {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #ffffff;
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

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

.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-card h3 {
  font-size: 18px;
  font-weight: 500;
}

.blog-card p {
  font-size: 14px;
  color: var(--muted);
}

.blog-tag {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.site-footer {
  background: #030911;
  color: #78828c;
  font-size: 14px;
}

.footer-inner {
  width: min(var(--container), 100% - var(--gutter));
  margin: 0 auto;
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  width: 28px;
  height: 32px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social img {
  width: 24px;
  height: 24px;
}

.footer-divider {
  height: 1px;
  background: #343b43;
  width: 100%;
}

.footer-links-row {
  font-size: 14px;
  font-weight: 400;
  color: #78828c;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.footer-links-row a {
  color: inherit;
  transition: color 0.2s ease;
}

.footer-privacy {
  justify-content: space-between;
}

.footer-privacy .footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-privacy-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #78828c;
  font-size: 14px;
  font-weight: 400;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-privacy-toggle img {
  width: 32px;
  height: 20px;
}

.footer-eu {
  justify-content: space-between;
}

.footer-eu .footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-eu-icon {
  width: 32px;
  height: 20px;
}

.footer-bottom {
  font-size: 14px;
  font-weight: 400;
}

.footer-climate {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #78828c;
  font-weight: 400;
}

.footer-climate a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.footer-climate img {
  width: 40px;
  height: 28px;
}

.footer-copy {
  color: #78828c;
}

@media (max-width: 1024px) {
  :root {
    --container: 786px;
  }

  .nav-links a.is-active::after {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .section-divider {
    margin: 64px 0;
  }

  .nav-menu {
    gap: 16px;
  }

  .hero {
    padding: 64px 0;
  }

  .pricing-hero h1 {
    font-size: 44px;
  }

  .pricing-title {
    font-size: 26px;
  }

  .coming-soon__content h1 {
    font-size: 40px;
  }

  .waitlist-success__content h1 {
    font-size: 40px;
  }

  .pricing-page h2 {
    font-size: 26px;
  }

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

  .stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-hero h1 {
    font-size: 44px;
  }

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

  .press-hero h1 {
    font-size: 44px;
  }

  .press-logo-grid {
    grid-template-columns: 1fr;
  }

  .press-logo-grid--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-hero h1 {
    font-size: 44px;
  }

  .legal-section h3 {
    font-size: 26px;
  }

  .calculator-hero {
    padding: 64px 0;
  }

  .calculator-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .calculator-hero-copy {
    align-items: center;
  }

  .calculator-hero h1 {
    max-width: none;
  }

  .calculator-hero .hero-subtitle {
    max-width: 550px;
  }

  .calculator-card-wrap {
    max-width: 786px;
    margin: 0 auto;
  }

  .error-hero {
    padding: 120px 0 128px;
  }

  .error-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
  }

  .error-title {
    font-size: 44px;
  }

  .error-title-desktop {
    display: none;
  }

  .error-title-mobile {
    display: inline;
  }

  .split-row {
    display: flex;
    flex-direction: column;
  }

  .split-row.reverse .split-text {
    order: 1;
  }

  .split-row.reverse .split-media {
    order: 2;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

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

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

  .blog-widget-text h3 {
    font-size: 26px;
  }

  .footer-inner {
    padding: 64px 0;
  }
}

@media (min-width: 1025px) {
  .nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
  }

  .nav-menu {
    display: contents;
  }

  .nav-links {
    justify-self: center;
    gap: 36px;
    font-weight: 500;
    color: #56636f;
  }

  .nav-links a,
  .nav-links a.is-active {
    color: #56636f;
  }

  .nav-links a.is-active::after {
    display: none;
  }

  .nav-actions {
    justify-self: end;
  }

  .nav-actions .btn {
    height: 38px;
    padding: 8px 12px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    right: auto;
    width: 100vw;
    transform: translateX(-50%);
    background: white;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    display: none;
  }

  body.nav-open .nav-menu {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    padding: 16px;
    gap: 16px;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 0 16px 24px;
  }

  .nav-actions .btn {
    width: 100%;
  }

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

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

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

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

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

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

  .about-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .greener-stats {
    flex-direction: column;
    gap: 16px;
  }

  .footer-links-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-privacy {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .footer-privacy .footer-links,
  .footer-eu .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-eu {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .blog-widget-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-widget-cta {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  :root {
    --container: 100%;
    --gutter: 32px;
  }

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

  .nav {
    min-height: 68px;
  }

  h1 {
    font-size: 32px;
  }

  .contact-hero h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 24px;
  }

  .stat-value {
    font-size: 36px;
  }

  .cta-card {
    padding: 32px 20px;
  }

  .hero-media {
    display: flex;
    justify-content: center;
  }

  .hero-media picture,
  .hero-media img {
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-hero h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    max-width: 343px;
  }

  .contact-hero .hero-subtitle {
    max-width: 343px;
  }

  .contact-card {
    padding: 32px 16px;
  }

  .press-hero h1 {
    font-size: 36px;
  }

  .calculator-hero h1 {
    font-size: 36px;
  }

  .calculator-hero .hero-subtitle {
    max-width: 343px;
  }

  .calc-input-row {
    grid-template-columns: 1fr;
  }

  .calc-total-row.total {
    font-size: 24px;
  }

  .calc-disclaimer {
    padding: 12px;
  }

  .error-hero {
    padding: 96px 0 120px;
  }

  .error-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .error-visual {
    justify-content: flex-start;
  }

  .error-content {
    max-width: 335px;
  }

  .error-title {
    font-size: 36px;
  }

  .press-hero .hero-subtitle {
    max-width: 343px;
  }

  .press-logo-grid--wide {
    grid-template-columns: 1fr;
  }

  .press-download-btn {
    width: 100%;
  }

  .press-toggle {
    width: 100%;
  }

  .press-toggle .toggle-btn {
    flex: 1;
    width: auto;
  }

  .legal-hero h1 {
    font-size: 36px;
  }

  .legal-section h3 {
    font-size: 20px;
  }

  .pricing-title {
    font-size: 20px;
  }

  .pricing-page h2 {
    font-size: 20px;
  }

  .pricing-card {
    padding: 32px 16px;
  }

  .billing-toggle {
    width: 100%;
    max-width: 308px;
  }

  .billing-btn {
    width: auto;
    flex: 1;
  }

  .plan-card {
    padding: 24px 16px;
  }

  .plan-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .plan-price {
    margin-top: 8px;
  }

  .plan-features {
    flex-direction: column;
  }

  .blog-widget-text h3 {
    font-size: 20px;
  }

  .footer-inner {
    padding: 64px 0;
  }

  .coming-soon {
    padding: 96px 20px;
  }

  .coming-soon__content h1 {
    font-size: 32px;
  }

  .coming-soon__form {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
  }

  .coming-soon__form button {
    width: 100%;
    height: auto;
    padding: 10px 12px;
  }

  .waitlist-success {
    padding: 96px 20px;
  }

  .waitlist-success__content h1 {
    font-size: 32px;
  }

  .waitlist-success__button {
    width: 100%;
    min-width: 0;
  }
}
