/* cache-bust 20260904-mob1 */
:root {
  --md-sys-color-primary: #1b4332;
  --md-sys-color-on-primary: #ffffff;
  --md-sys-color-primary-container: #b7f0c8;
  --md-sys-color-on-primary-container: #002111;
  --md-sys-color-secondary: #c9a96e;
  --md-sys-color-on-secondary: #112d21;
  --md-sys-color-secondary-container: #e6dec9;
  --md-sys-color-on-secondary-container: #261900;
  --md-sys-color-tertiary: #3d6470;
  --md-sys-color-on-tertiary: #ffffff;
  --md-sys-color-tertiary-container: #c1e9f7;
  --md-sys-color-on-tertiary-container: #001f27;
  --md-sys-color-error: #ba1a1a;
  --md-sys-color-on-error: #ffffff;
  --md-sys-color-surface: #f5f0e8;
  --md-sys-color-surface-dim: #d8d5d0;
  --md-sys-color-surface-bright: #f5f0e8;
  --md-sys-color-surface-container-lowest: #ffffff;
  --md-sys-color-surface-container-low: #faf8f5;
  --md-sys-color-surface-container: #f5f0e8;
  --md-sys-color-surface-container-high: #e6dec9;
  --md-sys-color-surface-container-highest: #dfdcd6;
  --md-sys-color-on-surface: #112d21;
  --md-sys-color-on-surface-variant: #405e4e;
  --md-sys-color-outline: #d1c7bd;
  --md-sys-color-outline-variant: #e6dec9;
  --md-sys-color-inverse-surface: #112d21;
  --md-sys-color-inverse-on-surface: #f5f0e8;
  --md-sys-color-inverse-primary: #c9a96e;
  --md-sys-color-scrim: #000000;
  --md-sys-color-shadow: #000000;

  --md-sys-shape-corner-extra-small: 4px;
  --md-sys-shape-corner-small: 8px;
  --md-sys-shape-corner-medium: 12px;
  --md-sys-shape-corner-large: 16px;
  --md-sys-shape-corner-extra-large: 28px;
  --md-sys-shape-corner-full: 999px;

  --md-sys-typescale-font: "Inter", "Roboto", "Noto Sans", sans-serif;

  --bg: var(--md-sys-color-surface);
  --bg-alt: var(--md-sys-color-surface-container-low);
  --surface: var(--md-sys-color-surface-container-lowest);
  --primary: var(--md-sys-color-primary);
  --ink: #112d21;
  --gold: #c9a96e;
  --gold-soft: #e6dec9;
  --border: #e6dec9;
  --muted: #405e4e;
  --subtle: #62756a;
  --input-border: #d1c7bd;
  --shadow-card: 0 8px 12px rgba(27, 67, 50, 0.07);
  --shadow-pro: 0 8px 12px rgba(27, 67, 50, 0.08);
  --radius-card: var(--md-sys-shape-corner-large);
  --radius-img: var(--md-sys-shape-corner-small);
  --radius-pill: var(--md-sys-shape-corner-small);
  --pad-x: 80px;
  --page: 1440px;
  --max: 1280px;
  --font-display: var(--md-sys-typescale-font);
  --font-logo: "Jacques Francois", Georgia, "Times New Roman", serif;
  --font-ui: var(--md-sys-typescale-font);
  --font-label: var(--md-sys-typescale-font);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --touch: 48px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  overflow-x: clip;
  max-width: 100%;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

body {
  margin: 0;
  background: var(--md-sys-color-surface);
  color: var(--ink);
  font-family: var(--md-sys-typescale-font);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}

a,
button,
input,
select,
textarea,
summary,
label {
  touch-action: manipulation;
}

button,
a.btn,
.icon-btn,
.nav-link,
.seg-btn,
.drawer-nav a,
.drawer-nav button {
  -webkit-tap-highlight-color: color-mix(in srgb, var(--md-sys-color-primary) 18%, transparent);
}

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

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

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

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  font-size: 24px;
  line-height: 1;
}

.wrap {
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.kicker {
  margin: 0;
  font-family: var(--md-sys-typescale-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--gold);
  text-transform: uppercase;
}

.display {
  margin: 0;
  font-family: var(--md-sys-typescale-font);
  font-weight: 700;
  color: var(--ink);
}

.display-lg {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.96px;
}

.display-sm {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.48px;
  font-weight: 600;
}

.lede {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--muted);
  max-width: 1018px;
}

.lede-lg {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.48px;
  color: #62756a;
  max-width: 820px;
}

.icon {
  width: 16px;
  height: 16px;
  overflow: clip;
  flex-shrink: 0;
}

.icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icon-sm { width: 12px; height: 12px; }
.icon-md { width: 14px; height: 14px; }
.icon-lg { width: 22px; height: 22px; }

.icon-btn {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: var(--md-sys-shape-corner-full);
  background: transparent;
  color: var(--md-sys-color-on-surface-variant);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.icon-btn:hover {
  background: color-mix(in srgb, var(--md-sys-color-on-surface) 8%, transparent);
}

.nav-menu-btn {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 48px;
  min-height: 80px;
  height: 80px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--md-sys-color-surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
}

header.nav.wrap {
  max-width: none;
  width: 100%;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: var(--md-sys-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark img {
  width: 22px;
  height: 22px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-word {
  font-family: var(--font-logo);
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--md-sys-color-primary);
}

.logo-tag {
  font-family: "Roboto", var(--md-sys-typescale-font);
  font-weight: 300;
  font-size: 11px;
  line-height: 13px;
  letter-spacing: 0;
  color: var(--md-sys-color-primary);
  white-space: nowrap;
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.nav-link {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

a.nav-link.is-active,
.nav-link.is-open,
.nav-link[aria-expanded="true"] {
  background: color-mix(in srgb, var(--ink) 8%, transparent);
  color: var(--ink);
}

button.nav-link {
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-caret {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  margin-left: 2px;
}

.nav-link.is-open .nav-caret {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.nav-cta {
  margin-left: auto;
  flex-shrink: 0;
}

.drawer-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: color-mix(in srgb, var(--md-sys-color-scrim) 32%, transparent);
  z-index: 70;
}

.drawer-scrim.is-open {
  display: block;
}

.drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(360px, 88vw);
  max-width: 100%;
  background: var(--md-sys-color-surface-container-low);
  z-index: 80;
  padding: 12px 12px 24px;
  padding-top: max(12px, var(--safe-top));
  padding-bottom: max(24px, var(--safe-bottom));
  padding-left: max(12px, var(--safe-left));
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.drawer.is-open {
  display: flex;
}

body.nav-open {
  overflow: hidden;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 4px 0 16px;
}

.drawer-title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--md-sys-color-on-surface-variant);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-nav a,
.drawer-nav button {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--md-sys-shape-corner-extra-large);
  background: transparent;
  color: var(--md-sys-color-primary);
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.drawer-nav a.is-active,
.drawer-nav a:hover,
.drawer-nav button:hover {
  background: var(--md-sys-color-secondary-container);
  color: var(--md-sys-color-on-secondary-container);
}

.drawer-nav .btn-demo {
  margin: 16px 8px 0;
  justify-content: center;
  background: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
  min-height: 48px;
  border-radius: var(--md-sys-shape-corner-small);
  font-size: 14px;
  font-weight: 500;
}

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

.drawer-products {
  width: 100%;
  justify-content: space-between;
}

.drawer-products .nav-caret {
  margin-left: 8px;
}

.drawer-products.is-open .nav-caret {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.drawer-products-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 0 8px 8px;
}

.drawer-products-list[hidden] {
  display: none;
}

.drawer-products-list a {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  min-height: 64px;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 1.3;
}

.drawer-products-list strong {
  font-size: 16px;
  font-weight: 600;
}

.drawer-products-list span {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}

.mega-overlay {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, var(--md-sys-color-scrim) 32%, transparent);
  z-index: 44;
}

.mega[hidden],
.mega-overlay[hidden],
.drawer[hidden],
.drawer-scrim[hidden] {
  display: none !important;
}

.mega-overlay.is-open {
  display: block;
}

.mega {
  display: none;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: min(1232px, calc(100vw - 32px));
  max-height: calc(100vh - 88px);
  overflow: auto;
  z-index: 45;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 24px;
  flex-direction: column;
  gap: 24px;
}

.mega.is-open {
  display: flex;
}

.mega-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
}

.mega-head p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--md-sys-color-on-surface-variant);
}

.mega-see-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--md-sys-color-secondary);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.mega-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--md-sys-color-on-surface-variant);
}

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

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

.mega-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  min-height: 100%;
  height: 100%;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.mega-card > .btn,
.mega-card > a.btn {
  margin-top: auto;
}

.mega-card-a,
.mega-card-b,
.mega-card-c {
  background: #ffffff;
}

.mega-illust {
  width: 100%;
  aspect-ratio: 2 / 1.3;
  overflow: clip;
  border-radius: var(--md-sys-shape-corner-small);
}

.mega-illust img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--ink);
}

.mega-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
}

.mega-card .btn-neutral,
.mega-card .btn-gold {
  width: auto;
  align-self: flex-start;
}

.mega-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--md-sys-color-outline-variant);
  padding-top: 16px;
}

.mega-foot a,
.mega-foot button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--md-sys-color-on-surface-variant);
}

.mega-foot .gold {
  color: var(--md-sys-color-secondary);
}

.mega-foot .ink {
  color: var(--md-sys-color-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-family: var(--md-sys-typescale-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0;
  min-height: 40px;
  padding: 10px 24px;
  border-radius: 8px;
  color: inherit;
}

.btn-demo,
.btn-primary-fill,
.btn-card {
  background: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
}

.btn-demo {
  padding: 10px 16px;
  font-size: 14px;
  line-height: 20px;
}

.btn-outline {
  background: var(--gold);
  color: var(--ink);
  border: 0;
  width: auto;
  height: auto;
  min-height: 40px;
  flex: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-ghost {
  color: var(--md-sys-color-on-primary);
  border: 1px solid var(--md-sys-color-outline-variant);
  background: transparent;
}

.btn-text {
  background: transparent;
  color: var(--md-sys-color-primary);
  min-height: 40px;
  padding: 10px 12px;
}

.btn-block {
  width: 100%;
}

.btn-neutral {
  background: var(--md-sys-color-surface-container-highest);
  color: var(--md-sys-color-on-surface);
}

.price-card .btn-neutral:hover:not(:disabled) {
  background: color-mix(in srgb, var(--ink) 8%, var(--md-sys-color-surface-container-highest));
  color: var(--md-sys-color-on-surface);
}

.hero {
  padding-top: 48px;
  padding-bottom: 48px;
  text-align: center;
}

.hero-inner {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: var(--md-sys-shape-corner-full);
  background: var(--md-sys-color-secondary-container);
  color: var(--md-sys-color-on-secondary-container);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

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

.checkout-note {
  text-align: center;
  margin: 0 0 16px;
  min-height: 18px;
}

.checkout-note:empty,
.checkout-note[hidden] {
  display: none;
}

.btn:hover:not(:disabled) {
  background: color-mix(in srgb, var(--md-sys-color-on-surface) 8%, transparent);
}

.btn-demo:hover:not(:disabled),
.btn-primary-fill:hover:not(:disabled),
.btn-card:hover:not(:disabled) {
  background: color-mix(in srgb, var(--md-sys-color-on-primary) 8%, var(--md-sys-color-primary));
}

.btn-gold:hover:not(:disabled),
.btn-outline:hover:not(:disabled) {
  background: color-mix(in srgb, var(--ink) 8%, var(--gold));
}

.btn-text:hover:not(:disabled) {
  background: color-mix(in srgb, var(--md-sys-color-primary) 8%, transparent);
}

.btn-ghost:hover:not(:disabled) {
  background: color-mix(in srgb, var(--md-sys-color-on-primary) 8%, transparent);
}

.btn:disabled {
  opacity: 0.38;
  cursor: wait;
}

.cta-form {
  margin: 0;
  width: 636px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.field {
  display: block;
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  height: 40px;
  border: 1px solid var(--input-border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 1;
  color: var(--ink);
  background: #ffffff;
  font-family: var(--md-sys-typescale-font);
}

select.field {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 40px;
  padding: 0 40px 0 16px;
  line-height: 40px;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4.5L6 8l3.5-3.5' stroke='%23112d21' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 12px;
}

.field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  width: 100%;
  align-items: start;
}

textarea.field {
  height: auto;
  min-height: 96px;
  resize: vertical;
}

.cta-form .field {
  flex: 1 1 auto;
  width: auto;
  max-width: 100%;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
}

.cta-form .btn-outline {
  flex: none;
  white-space: nowrap;
}

.field::placeholder {
  color: var(--md-sys-color-on-surface-variant);
}

.fineprint {
  margin: 0;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0;
  color: var(--subtle);
}

.form-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--md-sys-color-primary);
}

.form-note:empty {
  display: none;
}

.snackbar {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: min(calc(100% - 32px), 560px);
  padding: 14px 16px;
  border-radius: var(--md-sys-shape-corner-small);
  background: var(--md-sys-color-inverse-surface);
  color: var(--md-sys-color-inverse-on-surface);
  box-shadow: 0 4px 12px rgba(17, 45, 33, 0.24);
  transform: translate(-50%, 12px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.snackbar.is-open {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
  visibility: visible;
}

.snackbar-copy {
  margin: 0;
  flex: 1 1 auto;
  font-size: 14px;
  line-height: 20px;
  color: var(--md-sys-color-inverse-on-surface);
}

.snackbar-close {
  flex: none;
  width: 32px;
  height: 32px;
  margin: -6px -4px -6px 0;
  border: 0;
  border-radius: var(--md-sys-shape-corner-full);
  background: transparent;
  color: var(--md-sys-color-inverse-on-surface);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.snackbar-close:hover,
.snackbar-close:focus-visible {
  background: rgba(245, 240, 232, 0.12);
}

.section-cream {
  background: var(--md-sys-color-surface-container-low);
  padding: 24px 0;
}

.section-cream .wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.section-cream .section-head {
  margin-bottom: 0;
}

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

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card > .learn,
.card > .btn-text,
.card > .btn-card {
  margin-top: auto;
  align-self: flex-start;
}

.resource-grid .card > .btn {
  margin-top: auto;
  align-self: stretch;
  width: 100%;
}

.card-img {
  width: 100%;
  height: 180px;
  overflow: clip;
  border-radius: var(--md-sys-shape-corner-small);
}

.card-img img,
.thumb img,
.featured-img img,
.article-img img,
.detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.48px;
  font-weight: 600;
  color: var(--ink);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.learn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: var(--md-sys-color-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1px;
  min-height: 40px;
  border-radius: var(--md-sys-shape-corner-full);
}

.details-band {
  padding-top: 48px;
  padding-bottom: 48px;
  background: var(--md-sys-color-surface);
}

.details-panel {
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.detail-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 601px);
  gap: 80px;
  align-items: center;
}

.detail-row.reverse {
  grid-template-columns: minmax(0, 601px) minmax(0, 1fr);
}

.details-panel .detail-img {
  width: 100%;
  max-width: 601px;
  height: auto;
  aspect-ratio: 601 / 400;
  justify-self: stretch;
}

.detail-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 640px;
}

.detail-copy > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-copy .kicker {
  color: var(--gold);
}

.detail-copy .kicker + .display-sm {
  margin-top: 0;
}

.detail-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--md-sys-color-primary);
}

.checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--md-sys-color-primary);
}

.check-icon {
  font-size: 20px;
  color: var(--md-sys-color-primary);
  flex-shrink: 0;
}

.page-band { padding: 80px 0; }
.page-band-sm { padding: 48px 0; }
.page-band-alt { background: var(--md-sys-color-surface-container-low); }
.page-band .detail-row { gap: 48px; }

.detail-img {
  width: 601px;
  height: 400px;
  border: 1px solid #dfd9ce;
  border-radius: 16px;
  overflow: clip;
  flex-shrink: 0;
}

.split-band { padding: 80px 0; }
.split-band-sm { padding: 48px 0; }

.split-row {
  display: flex;
  align-items: center;
  gap: 48px;
}

.split-row.reverse { flex-direction: row; }

.split-row .detail-copy {
  flex: 1;
  min-width: 0;
  max-width: none;
  gap: 20px;
}

.split-row .detail-copy > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-row .detail-copy .kicker + .display-sm { margin-top: 0; }

.split-row .kicker {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}

.split-row .detail-img {
  width: 560px;
  height: 380px;
}

.repeat-cta {
  background: var(--md-sys-color-primary);
  padding: 100px max(var(--pad-x), calc((100% - var(--max)) / 2));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.repeat-cta h2 {
  color: #f5f0e8;
}

.repeat-cta p {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
}

.repeat-inner {
  max-width: 936px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.repeat-actions {
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  background: #112d21;
  color: #f5f0e8;
  padding: 80px max(var(--pad-x), calc((100% - var(--max)) / 2)) 40px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.brand-col {
  width: min(360px, 100%);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.logo-mark.invert {
  background: #f5f0e8;
}

.logo.invert .logo-word,
.logo.invert .logo-tag {
  color: #f5f0e8;
}

.brand-col p {
  margin: 0;
  color: #e6dec9;
  font-size: 14px;
  line-height: 1.4;
  opacity: 1;
}

.socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  overflow: clip;
}

.socials img {
  width: 24px;
  height: 24px;
}

.links-grid {
  display: flex;
  gap: 64px;
}

.links-col {
  width: 176px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
}

.links-col h4 {
  margin: 0;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.links-col a {
  color: #f5f0e8;
  font-weight: 600;
}

.footer-rule {
  height: 1px;
  width: 100%;
  background: color-mix(in srgb, var(--md-sys-color-inverse-on-surface) 16%, transparent);
  margin: 0;
  border: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  color: #e6dec9;
  font-size: 12px;
  line-height: 15px;
  opacity: 1;
}

.legal {
  display: flex;
  gap: 24px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 0 48px;
}

.thumb {
  height: 200px;
  border-radius: var(--md-sys-shape-corner-small);
  overflow: clip;
}

.meta {
  margin: 0;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.card h4 {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}

.insights { padding-bottom: 48px; }

.insights .section-head {
  margin-bottom: 24px;
}

.insights .section-head .kicker {
  font-size: 14px;
  font-weight: 600;
}

.insights .section-head h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.48px;
  font-weight: 600;
  color: var(--ink);
}

.featured {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.pill {
  display: inline-flex;
  background: var(--gold);
  color: var(--primary);
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  width: max-content;
}

.featured h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--primary);
}

.featured p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.featured-img {
  height: 320px;
  border-radius: var(--md-sys-shape-corner-medium);
  overflow: clip;
}

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

.article {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--primary);
}

.article p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

.cite {
  margin: 0;
  font-size: 12px;
  line-height: 18px;
  color: var(--md-sys-color-on-surface-variant);
}

.cite a {
  color: var(--md-sys-color-secondary);
  text-decoration: underline;
}

.article-img {
  height: 140px;
  border-radius: var(--md-sys-shape-corner-small);
  overflow: clip;
}

.view-all {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}

.view-all a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
}

.newsletter {
  background: var(--md-sys-color-primary);
  padding: 100px max(var(--pad-x), calc((100% - var(--max)) / 2));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.newsletter h2 {
  margin: 0;
  color: #f5f0e8;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  font-weight: 700;
}

.newsletter p {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
}

.newsletter .form-note { margin: 0; color: #e6dec9; }

.newsletter .cta-form,
.newsletter-form {
  margin: 0;
  width: min(100%, 568px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter .cta-row {
  justify-content: center;
}

.field-pill {
  flex: 1;
  border: 1px solid var(--input-border);
  border-radius: 8px;
  height: 40px;
  padding: 0 16px;
  font-size: 16px;
  background: #ffffff;
  color: var(--ink);
}

.btn-subscribe {
  background: var(--gold);
  color: var(--ink);
  border: 0;
  border-radius: 8px;
  height: 40px;
  align-self: center;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.billing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px;
  margin: 0;
  font-size: 14px;
  color: var(--md-sys-color-on-surface-variant);
}

.billing.is-annual .annual-label {
  color: var(--md-sys-color-on-surface);
}

.switch {
  width: 52px;
  height: 32px;
  border-radius: var(--md-sys-shape-corner-full);
  background: var(--md-sys-color-primary);
  border: 0;
  position: relative;
  cursor: pointer;
  padding: 0;
}

.switch::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--md-sys-color-on-primary);
}

.switch[aria-checked="false"] {
  background: var(--md-sys-color-surface-container-highest);
}

.switch[aria-checked="false"]::after {
  right: auto;
  left: 4px;
}

.save {
  background: var(--md-sys-color-secondary-container);
  color: var(--md-sys-color-on-secondary-container);
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: var(--md-sys-shape-corner-extra-small);
  line-height: 16px;
}

.billing-seg {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 320px;
  max-width: 100%;
  padding: 4px;
  border-radius: var(--md-sys-shape-corner-full);
  background: var(--md-sys-color-surface-container-low);
  border: 1px solid var(--md-sys-color-outline-variant);
  box-shadow: none;
}

.seg-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--md-sys-color-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 8px 12px;
  border-radius: var(--md-sys-shape-corner-full);
  cursor: pointer;
  white-space: nowrap;
}

.seg-btn:hover:not(.is-active) {
  background: var(--md-sys-color-surface-container-highest);
}

.seg-btn.is-active {
  background: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
}

.seg-check {
  width: 12px;
  height: 12px;
  display: none;
}

.seg-btn.is-active .seg-check {
  display: block;
}

.seg-btn.is-active .save {
  background: #ffffff;
  color: var(--primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  justify-content: center;
  align-items: start;
  padding: 0 0 96px;
}

.price-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 12px rgba(27, 67, 50, 0.03);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}

.price-card.pro {
  border: 2px solid var(--gold);
  background: #ffffff;
  box-shadow: 0 16px 16px rgba(27, 67, 50, 0.12);
  padding: 40px 32px;
  position: relative;
}

.price-card.pro::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 14px;
  background: var(--gold);
  border-radius: 16px 16px 0 0;
}

.plan-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.price-card:not(.pro) .plan-head {
  min-height: 81px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--md-sys-shape-corner-extra-small);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 16px;
  color: var(--md-sys-color-on-secondary-container);
  width: max-content;
  flex: none;
}

.badge-founder,
.badge-enterprise {
  background: var(--gold-soft);
  color: var(--primary);
}

.badge-popular {
  background: var(--gold);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  padding: 4px 10px;
  border-radius: 4px;
}

.price-card h3,
.price-card .tagline,
.price-card .was {
  margin: 0;
}

.price-card h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.48px;
  color: var(--ink);
}

.price-card.pro h3 {
  font-size: 24px;
  line-height: 1.2;
}

.price-card .tagline {
  color: var(--md-sys-color-on-surface-variant);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.price-block,
.price-meta {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.price-block { gap: 4px; }

.amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  min-height: 53px;
}

.amount strong {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.96px;
}

.price-card.pro .amount { min-height: 0; }

.price-card.pro .amount strong {
  font-size: 48px;
  line-height: 1.2;
}

.amount span {
  color: var(--md-sys-color-on-surface-variant);
  font-size: 14px;
  line-height: 20px;
}

.was {
  font-size: 12px;
  line-height: 16px;
  color: var(--md-sys-color-on-surface-variant);
  text-decoration: line-through;
}

.was.emph {
  text-decoration: none;
  color: var(--md-sys-color-primary);
  font-weight: 500;
  font-size: 12px;
}

.sep {
  height: 1px;
  background: var(--md-sys-color-outline-variant);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  color: var(--md-sys-color-on-surface);
}

.check-dot {
  width: 16px;
  height: 16px;
  border-radius: 100px;
  background: #f0e7d8;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-dot img {
  width: 10px;
  height: 10px;
}

.faq {
  background: var(--bg-alt);
  padding: 48px max(var(--pad-x), calc((100% - 960px) / 2));
}

.faq-inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq .section-head {
  text-align: center;
  align-items: center;
  margin-bottom: 48px;
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: transparent;
  border-radius: 0;
}

.faq-item:not([open]) { gap: 0; }

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  min-height: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

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

.chevron {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  position: relative;
  flex-shrink: 0;
  background: var(--md-sys-color-surface-container-highest);
}

.chevron::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--md-sys-color-on-surface-variant);
  border-bottom: 2px solid var(--md-sys-color-on-surface-variant);
  transform: rotate(45deg);
}

.faq-item[open] .chevron::after {
  top: 14px;
  transform: rotate(-135deg);
}

.faq-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--subtle);
}

.stats {
  background: var(--md-sys-color-surface-container-low);
  border: 0;
  padding: 80px max(var(--pad-x), calc((100% - var(--max)) / 2));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  width: 100%;
  text-align: left;
}

.stat {
  background: var(--md-sys-color-surface-container-lowest);
  border: 0;
  border-radius: var(--md-sys-shape-corner-medium);
  padding: 24px;
  min-height: 142px;
}

.stat strong {
  display: block;
  font-size: 36px;
  font-weight: 400;
  color: var(--md-sys-color-primary);
  margin-bottom: 12px;
}

.stat p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: var(--md-sys-color-on-surface-variant);
}

.modal {
  position: fixed;
  inset: 0;
  background: color-mix(in srgb, var(--md-sys-color-scrim) 40%, transparent);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 90;
}

.modal.is-open { display: flex; }

.modal-card {
  background: var(--md-sys-color-surface-container-high);
  border-radius: var(--md-sys-shape-corner-extra-large);
  padding: 24px;
  width: min(100%, 360px);
  border: 0;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.3);
}

.modal-headline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.modal-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--md-sys-shape-corner-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

.modal-icon.is-success {
  background: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
}

.modal-icon.is-error {
  background: #f9dedc;
  color: var(--md-sys-color-error);
}

.modal-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  color: var(--md-sys-color-on-surface);
}

.modal-card p {
  margin: 0;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 14px;
  line-height: 20px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 24px;
}

.demo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 820px;
}

.demo-copy {
  background: #1b4332;
  color: #f5f0e8;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
}

.demo-copy h1 {
  margin: 0;
  font-family: var(--md-sys-typescale-font);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.48px;
  font-weight: 600;
  color: #f5f0e8;
}

.demo-intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.demo-copy .lede-demo {
  margin: 0;
  font-family: var(--md-sys-typescale-font);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
  color: #e6dec9;
}

.demo-expect {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.demo-expect h2 {
  margin: 0;
  font-family: var(--md-sys-typescale-font);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  color: #f5f0e8;
}

.expect-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.expect-item {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.expect-check {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background: #c9a96e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: clip;
}

.expect-check img {
  width: 10px;
  height: 10px;
}

.expect-item p {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--md-sys-typescale-font);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: #e6dec9;
}

.demo-form-wrap {
  background: var(--md-sys-color-surface);
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-card {
  width: 100%;
  background: var(--md-sys-color-surface-container-lowest);
  border-radius: 16px;
  box-shadow: var(--shadow-pro);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.demo-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.48px;
  font-weight: 600;
  color: var(--md-sys-color-primary);
}

.demo-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.field-group label {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color: var(--md-sys-color-on-surface-variant);
}

.req {
  color: var(--md-sys-color-error);
  font-weight: 500;
}

.optional-hint {
  font-weight: 400;
  color: var(--md-sys-color-on-surface-variant);
}

.radio-group p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: var(--md-sys-color-on-surface);
}

.radio-options {
  display: flex;
  gap: 16px;
}

.radio-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--md-sys-color-on-surface);
  cursor: pointer;
}

.contact-section {
  background: var(--md-sys-color-primary);
  padding: 96px max(var(--pad-x), calc((100% - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 625px);
  gap: 80px;
  align-items: center;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  gap: 48px;
  color: #f5f0e8;
}

.contact-copy .kicker {
  color: var(--gold);
}

.contact-copy h2 {
  margin: 0;
  color: #f5f0e8;
}

.contact-copy .lede {
  color: #f5f0e8;
  opacity: 0.7;
  max-width: none;
}

.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #f5f0e8;
  font-size: 15px;
}

.contact-mail img {
  width: 20px;
  height: 20px;
}

.contact-socials {
  display: flex;
  gap: 16px;
}

.contact-socials a {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: #1d3527;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: clip;
}

.contact-socials img {
  width: 18px;
  height: 18px;
}

.contact-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow-pro);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card .field {
  height: 48px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 80;
  padding: 8px 12px;
  background: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
  border-radius: var(--md-sys-shape-corner-small);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 2px solid var(--md-sys-color-primary);
  outline-offset: 2px;
}

.field:focus {
  outline: 2px solid var(--md-sys-color-primary);
  outline-offset: 0;
  border-color: var(--md-sys-color-primary);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1360px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1100px) {
  :root { --pad-x: 24px; }

  .nav-menu-btn {
    display: inline-flex;
    width: var(--touch);
    height: var(--touch);
    min-width: var(--touch);
    min-height: var(--touch);
    flex-shrink: 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .icon-btn {
    width: var(--touch);
    height: var(--touch);
  }

  .card-grid,
  .resource-grid,
  .article-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .detail-row,
  .detail-row.reverse,
  .split-row,
  .split-row.reverse {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .details-panel {
    padding: 24px;
    gap: 40px;
    border-radius: var(--md-sys-shape-corner-large);
  }

  .detail-img,
  .details-panel .detail-img,
  .split-row .detail-img {
    width: 100%;
    max-width: none;
    height: 280px;
    aspect-ratio: auto;
  }

  .links-grid {
    gap: 32px;
    flex-wrap: wrap;
  }

  .links-col {
    width: auto;
    min-width: 0;
    flex: 1 1 140px;
  }

  .footer-top,
  .footer-bottom,
  .cta-row,
  .newsletter-form,
  .repeat-actions,
  .field-row,
  .demo-split {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .cta-row,
  .newsletter-form {
    align-items: stretch;
    width: 100%;
  }

  .cta-form .field,
  .cta-form .btn-outline,
  .newsletter-form .field-pill,
  .newsletter-form .btn-subscribe {
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  .btn,
  .btn-outline,
  .btn-demo,
  .btn-text,
  .btn-gold,
  .btn-ghost,
  .btn-subscribe,
  .btn-neutral,
  .btn-primary-fill,
  .btn-card {
    min-height: var(--touch);
  }

  .field,
  select.field,
  .cta-form .field,
  .field-pill,
  .newsletter-form .field-pill,
  .contact-card .field {
    height: var(--touch);
    min-height: var(--touch);
    max-height: none;
    font-size: 16px;
  }

  select.field {
    height: var(--touch);
    line-height: var(--touch);
  }

  .newsletter-form .btn-subscribe {
    height: var(--touch);
    min-height: var(--touch);
    align-self: stretch;
  }

  .seg-btn {
    min-height: var(--touch);
    padding: 12px 12px;
  }

  .faq-item summary {
    min-height: var(--touch);
  }

  .socials a,
  .contact-socials a {
    width: var(--touch);
    height: var(--touch);
    min-width: var(--touch);
    min-height: var(--touch);
  }

  .links-col a,
  .legal a,
  .contact-mail {
    min-height: var(--touch);
    display: inline-flex;
    align-items: center;
  }

  .brand-col {
    width: 100%;
  }

  .demo-split {
    min-height: 0;
  }

  .repeat-actions .btn {
    width: 100%;
    max-width: 360px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 24px;
  }

  .demo-copy,
  .demo-form-wrap { padding: 48px 24px; }

  .demo-card { padding: 24px; }

  .price-card { padding: 24px; }

  .nav,
  header.nav.wrap {
    flex-wrap: nowrap;
    gap: 8px;
    padding-top: var(--safe-top);
    padding-bottom: 0;
    padding-left: max(16px, var(--safe-left));
    padding-right: max(16px, var(--safe-right));
    height: calc(64px + var(--safe-top));
    min-height: calc(64px + var(--safe-top));
  }

  .display-lg {
    font-size: 36px;
    line-height: 44px;
    overflow-wrap: anywhere;
  }

  .mega-grid,
  .mega-grid-secondary { grid-template-columns: 1fr; }

  .mega {
    max-height: calc(100dvh - 96px);
    overflow: auto;
    width: calc(100vw - 32px);
  }

  .modal {
    padding: max(16px, var(--safe-top)) max(16px, var(--safe-right)) max(16px, var(--safe-bottom)) max(16px, var(--safe-left));
  }
  .modal-card { padding: 16px; width: 100%; }
  .snackbar {
    bottom: max(16px, var(--safe-bottom));
    width: calc(100% - 32px);
  }
  .snackbar-close {
    width: var(--touch);
    height: var(--touch);
    margin: -10px -8px -10px 0;
  }
}

@media (max-width: 720px) {
  :root { --pad-x: 16px; }

  .repeat-cta,
  .newsletter,
  .stats,
  .footer,
  .faq {
    padding-left: max(16px, var(--safe-left));
    padding-right: max(16px, var(--safe-right));
  }

  .footer {
    padding-bottom: max(40px, calc(24px + var(--safe-bottom)));
  }

  .demo-copy,
  .demo-form-wrap { padding: 32px max(16px, var(--safe-left)); }

  .demo-form-wrap {
    padding-right: max(16px, var(--safe-right));
  }

  .demo-card { padding: 16px; }

  .details-band {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .details-panel {
    padding: 16px;
    gap: 32px;
  }

  .display-lg {
    font-size: 32px;
    line-height: 40px;
  }

  .lede,
  .lede-lg,
  .repeat-cta p,
  .newsletter p {
    font-size: 16px;
    line-height: 24px;
  }

  .logo-tag { display: none; }

  .links-grid {
    flex-direction: column;
    gap: 24px;
  }

  .links-col {
    width: 100%;
    flex: none;
  }

  .legal {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .legal a {
    padding: 12px 4px;
  }

  .hero {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .billing-seg {
    width: 100%;
  }

  .wrap {
    padding-left: max(16px, var(--safe-left));
    padding-right: max(16px, var(--safe-right));
  }

  header.nav.wrap {
    padding-left: max(16px, var(--safe-left));
    padding-right: max(16px, var(--safe-right));
  }
}
