:root {
  --forest-950: #07271b;
  --forest-900: #0a3324;
  --forest-800: #0d4a32;
  --forest-700: #176745;
  --leaf-500: #74b82f;
  --orange-600: #dd7316;
  --orange-500: #f28b24;
  --orange-100: #fff0df;
  --cream-50: #fffdf8;
  --cream-100: #f8f5ec;
  --cream-200: #ece6d8;
  --ink-900: #13231d;
  --ink-700: #40524a;
  --ink-500: #6f7c76;
  --white: #ffffff;
  --shadow-sm: 0 12px 34px rgba(7, 39, 27, 0.08);
  --shadow-lg: 0 30px 80px rgba(7, 39, 27, 0.16);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --content: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--cream-50);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid rgba(242, 139, 36, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest-900);
  border-radius: 999px;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

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

.announcement {
  color: rgba(255, 255, 255, 0.9);
  background: var(--forest-950);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.announcement .container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 34px;
  gap: 10px;
}

.announcement-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--orange-500);
  box-shadow: 0 0 0 5px rgba(242, 139, 36, 0.15);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(13, 74, 50, 0.1);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  gap: 11px;
  color: var(--forest-900);
  text-decoration: none;
}

.brand-mark {
  width: 51px;
  height: 51px;
  object-fit: contain;
}

.brand-name {
  display: grid;
  line-height: 1;
  gap: 5px;
}

.brand-name strong {
  font-size: 1.05rem;
  letter-spacing: -0.025em;
}

.brand-g {
  color: #079447;
}

.brand-two {
  color: var(--forest-900);
}

.brand-o {
  color: var(--orange-500);
}

.brand-software {
  color: var(--forest-900);
}

.brand-name > span {
  color: var(--orange-600);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.2em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  color: var(--ink-700);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 720;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.nav-link:hover,
.nav-dropdown-toggle:hover,
.nav-link[aria-current="page"],
.nav-dropdown.active > .nav-dropdown-toggle,
.nav-dropdown-toggle[aria-expanded="true"] {
  color: var(--forest-800);
  background: rgba(13, 74, 50, 0.08);
}

.chevron {
  width: 8px;
  height: 8px;
  margin: -4px 0 0 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown-toggle[aria-expanded="true"] .chevron {
  transform: translateY(4px) rotate(225deg);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  width: 220px;
  padding: 9px;
  gap: 3px;
  background: var(--white);
  border: 1px solid rgba(13, 74, 50, 0.1);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  color: var(--ink-700);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.dropdown-menu a:hover,
.dropdown-menu a[aria-current="page"] {
  color: var(--forest-800);
  background: var(--cream-100);
}

.product-menu {
  width: 250px;
}

.product-menu a {
  display: grid;
  gap: 1px;
}

.product-menu small {
  color: var(--ink-500);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.product-menu a:hover small,
.product-menu a[aria-current="page"] small {
  color: var(--forest-700);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  background: var(--white);
  border: 1px solid rgba(13, 74, 50, 0.14);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  width: 20px;
  height: 2px;
  background: var(--forest-900);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--orange-600);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 27px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 24%, rgba(116, 184, 47, 0.15), transparent 28%),
    linear-gradient(135deg, var(--cream-50), var(--cream-100));
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: linear-gradient(rgba(13, 74, 50, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 74, 50, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, black 55%, black 100%);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 680px;
  gap: 60px;
  padding-block: 78px;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.feature-copy h2,
.contact-panel h2 {
  margin: 0;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hero-copy h1 {
  max-width: 700px;
  font-size: clamp(3.2rem, 6.2vw, 6.1rem);
}

.atom-home .hero-copy h1 {
  font-size: clamp(3.2rem, 5vw, 4.8rem);
}

.hero-copy h1 span {
  color: var(--orange-600);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 26px 0 0;
  color: var(--ink-700);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--forest-800);
  box-shadow: 0 12px 24px rgba(13, 74, 50, 0.18);
}

.button-primary:hover {
  background: var(--forest-700);
  box-shadow: 0 16px 28px rgba(13, 74, 50, 0.24);
}

.button-secondary {
  color: var(--forest-800);
  background: transparent;
  border-color: rgba(13, 74, 50, 0.22);
}

.button-secondary:hover {
  background: var(--white);
}

.arrow {
  font-size: 1.1rem;
  line-height: 1;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.hero-logo-card {
  position: absolute;
  inset: 7% 3% 8% 5%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 48% 52% 44% 56% / 54% 42% 58% 46%;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.hero-logo {
  width: 92%;
  max-width: 490px;
  filter:
    drop-shadow(1px 0 0 rgba(7, 39, 27, 0.88))
    drop-shadow(-1px 0 0 rgba(7, 39, 27, 0.88))
    drop-shadow(0 1px 0 rgba(7, 39, 27, 0.88))
    drop-shadow(0 -1px 0 rgba(7, 39, 27, 0.88))
    drop-shadow(0 22px 24px rgba(7, 39, 27, 0.14));
}

.floating-note {
  position: absolute;
  right: -8px;
  bottom: 18px;
  max-width: 210px;
  padding: 15px 17px;
  color: var(--forest-900);
  background: var(--white);
  border-left: 4px solid var(--orange-500);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.45;
}

.floating-note strong {
  color: var(--orange-600);
}

/* Homepage globe-centered atomic orbit system. */
.atom-home .hero-visual {
  isolation: isolate;
  overflow: hidden;
}

.atom-home .hero-logo-card {
  z-index: 2;
  inset: 9% 5% 10% 7%;
}

.atom-home .hero-logo-card::before {
  position: absolute;
  inset: 5%;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: inherit;
  box-shadow: 0 0 54px rgba(116, 184, 47, 0.12);
  content: "";
}

.atom-home .hero-logo {
  position: relative;
  z-index: 1;
  width: 88%;
}

.atom-system {
  position: absolute;
  inset: 2%;
  z-index: 3;
  pointer-events: none;
}

.atom-system::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 67%);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.atom-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 102%;
  height: 42%;
  border: 1.5px solid rgba(13, 74, 50, 0.27);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(var(--atom-angle));
}

.atom-ring-one {
  --atom-angle: -8deg;
  border-color: rgba(7, 148, 71, 0.36);
}

.atom-ring-two {
  --atom-angle: 56deg;
  border-color: rgba(242, 139, 36, 0.42);
}

.atom-ring-three {
  --atom-angle: -45deg;
  border-top-color: rgba(7, 148, 71, 0.38);
  border-right-color: rgba(242, 139, 36, 0.42);
  border-bottom-color: rgba(242, 139, 36, 0.42);
  border-left-color: rgba(7, 148, 71, 0.38);
}

.atom-particle {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 4px solid var(--cream-50);
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(7, 39, 27, 0.18);
  box-sizing: content-box;
  transform: translate(-50%, -50%);
}

.atom-particle.green {
  background: #079447;
}

.atom-particle.orange {
  background: var(--orange-500);
}

.atom-particle.particle-one {
  top: 60.396%;
  left: 1.093%;
}

.atom-particle.particle-two {
  top: 76.496%;
  left: 92.402%;
}

.atom-particle.particle-three {
  top: 15.9%;
  left: 86.568%;
}

.atom-particle.particle-four {
  top: 75.58%;
  left: 7.039%;
}

.atom-particle.particle-five {
  top: 51.98%;
  left: 99.961%;
}

.atom-particle.particle-six {
  top: 62.147%;
  left: 1.498%;
}

.atom-home .floating-note {
  z-index: 5;
}

.section {
  padding-block: 108px;
}

.section-muted {
  background: var(--cream-100);
}

.section-dark {
  color: var(--white);
  background: var(--forest-950);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 52px;
}

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

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

.section-heading h2,
.feature-copy h2,
.contact-panel h2 {
  font-size: clamp(2.35rem, 4.4vw, 4.25rem);
}

.section-heading p,
.feature-copy > p {
  margin: 20px 0 0;
  color: var(--ink-700);
  font-size: 1.05rem;
}

.section-dark .section-heading h2,
.section-dark .section-heading p {
  color: var(--white);
}

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

.info-card {
  position: relative;
  min-height: 260px;
  padding: 31px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(13, 74, 50, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.info-card::after {
  position: absolute;
  right: -34px;
  bottom: -38px;
  width: 120px;
  height: 120px;
  background: rgba(116, 184, 47, 0.08);
  border-radius: 50%;
  content: "";
}

.card-number,
.icon-box {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 31px;
  color: var(--orange-600);
  background: var(--orange-100);
  border-radius: 13px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.info-card h3,
.product-card h3,
.value-card h3,
.contact-method h3 {
  margin: 0;
  color: var(--forest-900);
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.info-card p,
.product-card p,
.value-card p,
.contact-method p {
  margin: 11px 0 0;
  color: var(--ink-700);
  font-size: 0.94rem;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
  overflow: hidden;
  background: var(--forest-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.feature-art {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(242, 139, 36, 0.95), rgba(221, 115, 22, 0.78)),
    var(--orange-500);
}

.phone-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 245px;
  height: 455px;
  padding: 14px;
  background: #0c211a;
  border: 3px solid rgba(255, 255, 255, 0.28);
  border-radius: 46px;
  box-shadow: 0 32px 60px rgba(7, 39, 27, 0.32);
  transform: translate(-50%, -47%) rotate(-8deg);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(116, 184, 47, 0.65), transparent 25%),
    linear-gradient(165deg, #0d4a32, #071d15);
  border-radius: 34px;
}

.phone-screen::before {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 78px;
  height: 23px;
  background: #07130f;
  border-radius: 999px;
  transform: translateX(-50%);
  content: "";
}

.game-glyph {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 118px;
  height: 118px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 28px;
  transform: translate(-50%, -50%) rotate(11deg);
}

.game-glyph::before,
.game-glyph::after {
  position: absolute;
  background: var(--orange-500);
  border-radius: 999px;
  content: "";
}

.game-glyph::before {
  top: 55px;
  left: 25px;
  width: 68px;
  height: 9px;
}

.game-glyph::after {
  top: 25px;
  left: 55px;
  width: 9px;
  height: 68px;
}

.feature-art-label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 10px 14px;
  color: var(--forest-900);
  background: var(--cream-50);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 76px);
  color: var(--white);
}

.feature-copy h2,
.feature-copy > p {
  color: var(--white);
}

.feature-copy > p {
  color: rgba(255, 255, 255, 0.73);
}

.feature-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 680;
}

.feature-list li::before {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  color: var(--forest-950);
  background: var(--orange-500);
  border-radius: 50%;
  content: "\2713";
  font-size: 0.73rem;
  font-weight: 900;
}

.page-hero {
  position: relative;
  padding-block: 112px 104px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(242, 139, 36, 0.14), transparent 24%),
    linear-gradient(135deg, var(--cream-50), var(--cream-100));
}

.page-hero::after {
  position: absolute;
  top: -170px;
  right: -120px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(13, 74, 50, 0.12);
  border-radius: 50%;
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(3rem, 6.5vw, 6rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 690px;
  margin: 25px 0 0;
  color: var(--ink-700);
  font-size: 1.12rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: clamp(50px, 9vw, 120px);
}

.sticky-title {
  position: sticky;
  top: 130px;
}

.sticky-title h2 {
  margin: 0;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.prose {
  color: var(--ink-700);
  font-size: 1.03rem;
}

.prose h2,
.prose h3 {
  color: var(--forest-900);
  line-height: 1.2;
}

.prose h2 {
  margin: 54px 0 12px;
  font-size: 1.65rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 34px 0 9px;
  font-size: 1.15rem;
}

.prose p,
.prose ul {
  margin-block: 0 19px;
}

.prose a {
  color: var(--forest-700);
  font-weight: 760;
  text-underline-offset: 3px;
}

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

.value-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(13, 74, 50, 0.09);
  border-radius: var(--radius-md);
}

.value-card strong {
  display: block;
  margin-bottom: 24px;
  color: var(--orange-600);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  margin-bottom: 23px;
  padding: 8px 12px;
  gap: 8px;
  color: var(--forest-800);
  background: rgba(116, 184, 47, 0.13);
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf-500);
  box-shadow: 0 0 0 4px rgba(116, 184, 47, 0.16);
  content: "";
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-950);
  border-radius: var(--radius-lg);
}

.product-details {
  padding: clamp(42px, 7vw, 82px);
}

.product-details h2 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.product-details > p {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.product-visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(116, 184, 47, 0.33), transparent 26%),
    linear-gradient(145deg, var(--forest-800), #071c14);
}

.product-visual::before,
.product-visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.product-visual::before {
  inset: 12%;
}

.product-visual::after {
  inset: 25%;
}

.product-visual .phone-frame {
  top: 50%;
  width: 260px;
  height: 490px;
  transform: translate(-50%, -50%) rotate(7deg);
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.product-card {
  padding: 27px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.product-card h3 {
  color: var(--white);
}

.product-card p {
  color: rgba(255, 255, 255, 0.62);
}

.ideation-band {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  margin-bottom: clamp(72px, 9vw, 112px);
  padding: clamp(34px, 6vw, 66px);
  gap: clamp(30px, 6vw, 72px);
  background: var(--white);
  border: 1px solid rgba(13, 74, 50, 0.09);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.ideation-band h2 {
  margin: 0;
  color: var(--forest-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.ideation-band p:not(.eyebrow) {
  max-width: 670px;
  margin: 22px 0 0;
  color: var(--ink-700);
}

.ideation-mark {
  display: grid;
  width: min(100%, 230px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
  color: var(--white);
  background:
    radial-gradient(circle at center, var(--orange-500) 0 36%, transparent 37%),
    conic-gradient(from 25deg, var(--forest-700), var(--leaf-500), var(--orange-500), var(--forest-700));
  border: 12px solid var(--cream-100);
  border-radius: 50%;
  box-shadow: 0 18px 48px rgba(7, 39, 27, 0.16);
}

.ideation-mark span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 7vw, 5.2rem);
  font-weight: 700;
  line-height: 1;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  padding: 40px 24px 0 0;
  color: var(--ink-700);
}

.timeline li::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--cream-200);
  content: "";
}

.timeline li::after {
  position: absolute;
  top: 6px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid var(--cream-50);
  border-radius: 50%;
  background: var(--cream-200);
  box-shadow: 0 0 0 2px var(--cream-200);
  box-sizing: content-box;
  content: "";
}

.timeline li.done::before,
.timeline li.done::after,
.timeline li.current::after {
  background: var(--leaf-500);
  box-shadow: 0 0 0 2px var(--leaf-500);
}

.timeline li.current::before {
  background: linear-gradient(90deg, var(--leaf-500), var(--cream-200));
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  color: var(--forest-900);
  font-size: 0.95rem;
}

.timeline span {
  margin-top: 7px;
  font-size: 0.86rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: start;
  gap: 28px;
}

.contact-panel {
  padding: clamp(34px, 6vw, 70px);
  background: var(--white);
  border: 1px solid rgba(13, 74, 50, 0.09);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-panel > p {
  max-width: 610px;
  color: var(--ink-700);
}

.contact-method {
  margin-top: 38px;
  padding: 25px;
  background: var(--cream-100);
  border-left: 4px solid var(--orange-500);
  border-radius: var(--radius-sm);
}

.email-link {
  display: inline-flex;
  margin-top: 15px;
  color: var(--forest-700);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  overflow-wrap: anywhere;
}

.contact-aside {
  padding: 34px;
  color: var(--white);
  background: var(--forest-900);
  border-radius: var(--radius-md);
}

.contact-aside h3 {
  margin: 0;
  font-size: 1.28rem;
}

.contact-aside p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.contact-aside a {
  display: inline-block;
  margin-top: 20px;
  color: var(--orange-500);
  font-weight: 800;
  text-underline-offset: 4px;
}

.legal-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  align-items: start;
  justify-content: center;
  gap: 72px;
}

.legal-nav {
  position: sticky;
  top: 130px;
  display: grid;
  padding: 18px;
  gap: 2px;
  background: var(--cream-100);
  border-radius: 16px;
}

.legal-nav strong {
  padding: 7px 10px 11px;
  color: var(--forest-900);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-nav a {
  padding: 8px 10px;
  color: var(--ink-700);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 690;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--forest-800);
  background: var(--white);
}

.effective-date {
  display: inline-flex;
  margin-bottom: 27px;
  padding: 8px 12px;
  color: var(--ink-700);
  background: var(--cream-100);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 760;
}

.error-main {
  position: relative;
  display: grid;
  min-height: calc(100vh - 114px);
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 30%, rgba(116, 184, 47, 0.14), transparent 27%),
    linear-gradient(135deg, var(--cream-50), var(--cream-100));
}

.error-main::before {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(13, 74, 50, 0.035);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18rem, 46vw, 44rem);
  font-weight: 700;
  line-height: 0.7;
  content: "404";
  transform: translate(-50%, -50%);
  user-select: none;
}

.error-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  gap: clamp(30px, 8vw, 100px);
  padding-block: 88px;
}

.error-code {
  display: block;
  margin-bottom: 20px;
  color: var(--orange-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.error-copy h1 {
  max-width: 700px;
  margin: 0;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.error-copy > p {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--ink-700);
  font-size: 1.08rem;
}

.error-visual {
  display: grid;
  place-items: center;
}

.error-visual img {
  width: min(100%, 410px);
  filter:
    drop-shadow(1px 0 0 rgba(7, 39, 27, 0.88))
    drop-shadow(-1px 0 0 rgba(7, 39, 27, 0.88))
    drop-shadow(0 1px 0 rgba(7, 39, 27, 0.88))
    drop-shadow(0 -1px 0 rgba(7, 39, 27, 0.88))
    drop-shadow(0 26px 34px rgba(7, 39, 27, 0.16));
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(32px, 5vw, 56px);
  gap: 36px;
  color: var(--white);
  background: linear-gradient(120deg, var(--forest-900), var(--forest-700));
  border-radius: var(--radius-lg);
}

.cta-band-copy {
  max-width: 720px;
}

.cta-band-copy > p {
  margin: 0 0 12px;
  color: var(--orange-500);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cta-band-copy > span {
  display: block;
  max-width: 590px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.cta-band h2 {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.cta-band .button {
  flex: 0 0 auto;
  color: var(--forest-900);
  background: var(--orange-500);
}

.site-footer {
  padding-block: 70px 28px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--forest-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 60px;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand .brand-two,
.footer-brand .brand-software {
  color: var(--white);
}

.footer-brand p {
  max-width: 390px;
  margin: 22px 0 0;
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  margin-top: 22px;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px 8px 8px;
  gap: 11px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(242, 139, 36, 0.62);
  transform: translateY(-2px);
}

.social-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  color: var(--forest-950);
  background: var(--white);
  border-radius: 50%;
}

.social-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.social-copy {
  display: grid;
  line-height: 1.18;
}

.social-copy small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-copy strong {
  margin-top: 3px;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

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

/* Did You Know public reference library. */
.reference-hero {
  padding-block: 90px 88px;
}

.reference-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: center;
  gap: clamp(46px, 8vw, 100px);
}

.reference-proof-card {
  position: relative;
  isolation: isolate;
  min-height: 278px;
  padding: 42px 32px 30px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 8%, rgba(242, 139, 36, 0.38), transparent 34%),
    linear-gradient(145deg, var(--forest-900), var(--forest-700));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.reference-proof-card::after {
  position: absolute;
  right: -65px;
  bottom: -80px;
  z-index: -1;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.reference-sparkles {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.reference-sparkles span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: var(--forest-950);
  background: var(--orange-500);
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
  font-weight: 800;
  transform: rotate(-7deg);
}

.reference-sparkles span:nth-child(2) {
  background: var(--white);
  transform: translateY(5px) rotate(8deg);
}

.reference-sparkles span:nth-child(3) {
  background: var(--leaf-500);
  transform: rotate(5deg);
}

.reference-proof-card > strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.page-hero .reference-proof-card > p {
  max-width: 190px;
  margin: 14px 0 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.83rem;
  line-height: 1.45;
}

.reference-coverage {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.reference-coverage i {
  width: 8px;
  height: 8px;
  background: var(--leaf-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(116, 184, 47, 0.18);
}

.reference-section {
  background:
    radial-gradient(circle at 8% 5%, rgba(116, 184, 47, 0.09), transparent 24%),
    var(--cream-100);
}

.reference-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 42px;
  gap: 42px;
}

.reference-intro .eyebrow {
  margin-bottom: 13px;
}

.reference-intro h2 {
  max-width: 670px;
  margin: 0;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.reference-intro > p {
  max-width: 430px;
  margin: 0 0 7px;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.reference-panel {
  scroll-margin-top: 112px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(13, 74, 50, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.reference-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.32fr);
  padding: 28px;
  gap: 16px;
  background: var(--cream-50);
  border-bottom: 1px solid rgba(13, 74, 50, 0.1);
}

.reference-controls label {
  display: grid;
  gap: 8px;
  color: var(--forest-950);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.reference-input-wrap {
  position: relative;
  display: block;
}

.reference-input-wrap i {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--forest-700);
  border-radius: 50%;
  transform: translateY(-58%);
}

.reference-input-wrap i::after {
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 7px;
  height: 2px;
  background: var(--forest-700);
  border-radius: 2px;
  content: "";
  transform: rotate(45deg);
}

.reference-controls input,
.reference-controls select {
  width: 100%;
  height: 52px;
  color: var(--ink-900);
  background: var(--white);
  border: 1px solid rgba(13, 74, 50, 0.2);
  border-radius: 12px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.reference-controls input {
  padding: 0 18px 0 46px;
}

.reference-controls select {
  padding: 0 42px 0 15px;
}

.reference-controls input:focus,
.reference-controls select:focus {
  border-color: var(--forest-700);
  box-shadow: 0 0 0 4px rgba(13, 74, 50, 0.09);
}

.reference-table-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 10px 28px;
  gap: 20px;
  color: var(--ink-500);
  border-bottom: 1px solid rgba(13, 74, 50, 0.1);
  font-size: 0.76rem;
}

.reference-table-meta p {
  margin: 0;
}

.reference-table-meta > span {
  flex: 0 0 auto;
}

.reference-table-meta b {
  color: var(--forest-700);
}

.reference-table-wrap {
  overflow-x: auto;
}

.reference-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.reference-table th {
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--forest-900);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
}

.reference-table th:nth-child(1) {
  width: 125px;
}

.reference-table th:nth-child(3) {
  width: 190px;
}

.reference-table th:nth-child(4) {
  width: 215px;
}

.reference-table td {
  padding: 19px 18px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(13, 74, 50, 0.09);
}

.reference-table tbody tr:nth-child(even) {
  background: rgba(248, 245, 236, 0.52);
}

.reference-table tbody tr {
  transition: background 150ms ease;
}

.reference-table tbody tr:hover {
  background: rgba(116, 184, 47, 0.08);
}

.reference-number {
  display: inline-flex;
  justify-content: center;
  min-width: 75px;
  padding: 7px 9px;
  color: var(--orange-600);
  background: var(--orange-100);
  border: 1px solid rgba(221, 115, 22, 0.16);
  border-radius: 999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 850;
}

.reference-tip-cell p {
  margin: 0;
  color: var(--ink-900);
  font-size: 0.92rem;
  font-weight: 680;
  line-height: 1.48;
}

.reference-topic-cell small {
  display: block;
  margin-top: 6px;
  color: var(--ink-500);
  font-size: 0.67rem;
}

.reference-topic {
  display: inline-flex;
  max-width: 100%;
  padding: 5px 9px;
  overflow: hidden;
  color: var(--forest-800);
  background: rgba(116, 184, 47, 0.13);
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 800;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.reference-source-link {
  display: inline-flex;
  max-width: 100%;
  padding: 9px 11px;
  flex-direction: column;
  color: var(--forest-800);
  background: var(--cream-100);
  border: 1px solid rgba(13, 74, 50, 0.11);
  border-radius: 10px;
  text-decoration: none;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}

.reference-source-link:hover {
  color: var(--white);
  background: var(--forest-700);
  border-color: var(--forest-700);
}

.reference-source-link span {
  max-width: 175px;
  overflow: hidden;
  font-size: 0.74rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reference-source-link small {
  margin-top: 2px;
  color: var(--orange-600);
  font-size: 0.66rem;
  font-weight: 800;
}

.reference-source-link:hover small {
  color: var(--orange-100);
}

.reference-empty,
.reference-noscript {
  padding: 46px 28px !important;
  color: var(--ink-500);
  text-align: center;
}

.reference-pagination {
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  align-items: center;
  padding: 22px 28px;
  gap: 16px;
  background: var(--cream-50);
  border-top: 1px solid rgba(13, 74, 50, 0.1);
}

.reference-pagination .button {
  min-height: 44px;
  padding-inline: 16px;
  cursor: pointer;
  font-size: 0.78rem;
}

.reference-pagination .button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.reference-pagination p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.76rem;
  font-weight: 750;
  text-align: center;
}

.reference-note {
  max-width: 850px;
  margin: 26px auto 0;
  color: var(--ink-500);
  font-size: 0.78rem;
  text-align: center;
}

@media (max-width: 960px) {
  .reference-hero-grid {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 36px;
  }

  .reference-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 740px) {
  .reference-hero-grid {
    grid-template-columns: 1fr;
  }

  .reference-proof-card {
    min-height: 240px;
  }

  .reference-controls {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .reference-table-meta {
    align-items: flex-start;
    padding-inline: 20px;
    flex-direction: column;
    gap: 2px;
  }

  .reference-table-wrap {
    padding: 14px;
    background: var(--cream-100);
  }

  .reference-table,
  .reference-table tbody,
  .reference-table tr,
  .reference-table td {
    display: block;
    width: 100%;
  }

  .reference-table {
    table-layout: auto;
  }

  .reference-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .reference-table tbody tr,
  .reference-table tbody tr:nth-child(even) {
    margin-bottom: 12px;
    padding: 17px;
    background: var(--white);
    border: 1px solid rgba(13, 74, 50, 0.1);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
  }

  .reference-table tbody tr:last-child {
    margin-bottom: 0;
  }

  .reference-table td {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    align-items: start;
    padding: 10px 0;
    gap: 12px;
    border-bottom: 1px solid rgba(13, 74, 50, 0.08);
  }

  .reference-table td:last-child {
    border-bottom: 0;
  }

  .reference-table td::before {
    padding-top: 6px;
    color: var(--ink-500);
    content: attr(data-label);
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .reference-tip-cell p {
    padding-top: 3px;
  }

  .reference-source-link span {
    max-width: 100%;
  }

  .reference-pagination {
    grid-template-columns: 1fr 1fr;
    padding: 20px;
  }

  .reference-pagination p {
    grid-column: 1 / -1;
    grid-row: 1;
  }
}

@media (max-width: 420px) {
  .reference-table td {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .reference-table td::before {
    padding-top: 0;
  }

  .reference-pagination .button {
    width: 100%;
  }
}

.footer-column h2 {
  margin: 0 0 17px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.footer-links a {
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--orange-500);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 62px;
  padding-top: 23px;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

/* Hearts Ultimate deal verifier. */
.verifier-hero {
  padding-block: 88px 82px;
}

.verifier-hero .container {
  max-width: 900px;
}

.verifier-section {
  background:
    radial-gradient(circle at 86% 10%, rgba(116, 184, 47, 0.11), transparent 29%),
    var(--cream-100);
}

.verifier-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(38px, 7vw, 82px);
}

.verifier-explainer {
  position: sticky;
  top: 138px;
}

.verifier-explainer h2 {
  margin: 20px 0 14px;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.verifier-explainer > p {
  margin: 0;
  color: var(--ink-700);
}

.verifier-steps {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  gap: 24px;
  list-style: none;
  counter-reset: verifier-step;
}

.verifier-steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 14px;
  counter-increment: verifier-step;
}

.verifier-steps li::before {
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--forest-900);
  background: var(--orange-100);
  border: 1px solid rgba(221, 115, 22, 0.22);
  border-radius: 50%;
  font-weight: 850;
  content: counter(verifier-step);
}

.verifier-steps strong,
.verifier-steps span {
  grid-column: 2;
}

.verifier-steps strong {
  color: var(--forest-950);
  line-height: 1.25;
}

.verifier-steps span {
  margin-top: 4px;
  color: var(--ink-700);
  font-size: 0.88rem;
  line-height: 1.5;
}

.verifier-card {
  min-width: 0;
  padding: clamp(26px, 5vw, 48px);
  background: var(--white);
  border: 1px solid rgba(13, 74, 50, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.verifier-field-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.verifier-field-heading label {
  display: block;
  color: var(--forest-950);
  font-size: 1.08rem;
  font-weight: 850;
}

.verifier-field-heading p {
  margin: 5px 0 0;
  color: var(--ink-500);
  font-size: 0.84rem;
}

.local-only-badge {
  flex: 0 0 auto;
  padding: 6px 10px;
  color: var(--forest-800);
  background: rgba(116, 184, 47, 0.13);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#deal-record {
  width: 100%;
  min-height: 310px;
  margin-top: 20px;
  padding: 18px;
  color: var(--ink-900);
  background: var(--cream-50);
  border: 1px solid rgba(13, 74, 50, 0.2);
  border-radius: var(--radius-sm);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.82rem;
  line-height: 1.55;
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

#deal-record:focus {
  background: var(--white);
  border-color: var(--forest-700);
  box-shadow: 0 0 0 4px rgba(13, 74, 50, 0.09);
  outline: 0;
}

.verifier-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 14px;
  gap: 9px;
}

.verifier-tools .button {
  min-height: 42px;
  padding-inline: 16px;
  cursor: pointer;
  font-size: 0.78rem;
}

#deal-record-file {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.verifier-file-button:focus-within {
  outline: 3px solid rgba(242, 139, 36, 0.55);
  outline-offset: 4px;
}

.verifier-clear-button {
  margin-left: auto;
  color: var(--ink-500);
  background: transparent;
}

.verifier-clear-button:hover {
  color: var(--forest-800);
  background: var(--cream-100);
}

.verifier-submit {
  width: 100%;
  margin-top: 24px;
  cursor: pointer;
}

.verifier-submit:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.verifier-form-status {
  min-height: 1.5em;
  margin: 12px 2px 0;
  color: var(--ink-500);
  font-size: 0.82rem;
}

.verifier-form-status.success {
  color: var(--forest-700);
  font-weight: 750;
}

.verifier-form-status.error {
  color: #9d2e25;
  font-weight: 750;
}

.verification-result {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
}

.verification-result.valid {
  background: #f1f8e9;
  border-color: rgba(74, 132, 25, 0.25);
}

.verification-result.invalid {
  background: #fff1ef;
  border-color: rgba(157, 46, 37, 0.24);
}

.verification-result-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.verification-result-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--forest-700);
  border-radius: 50%;
}

.verification-result.valid .verification-result-icon::after {
  position: absolute;
  top: 10px;
  left: 15px;
  width: 9px;
  height: 16px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.verification-result.invalid .verification-result-icon {
  background: #9d2e25;
}

.verification-result.invalid .verification-result-icon::before,
.verification-result.invalid .verification-result-icon::after {
  position: absolute;
  top: 19px;
  left: 11px;
  width: 20px;
  height: 3px;
  background: currentColor;
  content: "";
}

.verification-result.invalid .verification-result-icon::before {
  transform: rotate(45deg);
}

.verification-result.invalid .verification-result-icon::after {
  transform: rotate(-45deg);
}

.verification-result-kicker {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.verification-result-heading h2 {
  margin: 2px 0 0;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.1;
}

.verification-result > p {
  margin: 18px 0 0;
  color: var(--ink-700);
}

.verification-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 22px;
  gap: 10px;
}

.verification-checks p {
  position: relative;
  margin: 0;
  padding: 12px 12px 12px 34px;
  background: rgba(255, 255, 255, 0.62);
  border-radius: 9px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.verification-checks p::before {
  position: absolute;
  top: 12px;
  left: 12px;
  content: "\2713";
}

.verification-checks p.failed::before {
  content: "\00d7";
}

.verification-checks p.passed {
  color: var(--forest-700);
}

.verification-checks p.failed {
  color: #9d2e25;
}

.verification-metadata {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 22px 0 0;
  padding-top: 20px;
  gap: 16px 24px;
  border-top: 1px solid rgba(13, 74, 50, 0.12);
}

.verification-metadata div:last-child {
  grid-column: 1 / -1;
}

.verification-metadata dt {
  color: var(--ink-500);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.verification-metadata dd {
  overflow-wrap: anywhere;
  margin: 3px 0 0;
  color: var(--ink-900);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
}

.verifier-notes {
  padding-top: 82px;
}

@media (max-width: 960px) {
  .verifier-layout {
    grid-template-columns: 1fr;
  }

  .verifier-explainer {
    position: static;
  }
}

@media (max-width: 740px) {
  .verifier-hero {
    padding-block: 72px 68px;
  }

  .verifier-card {
    padding: 22px;
  }

  .verifier-field-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .verification-checks,
  .verification-metadata {
    grid-template-columns: 1fr;
  }

  .verification-metadata div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .verifier-tools .button {
    width: auto;
  }

  .verifier-clear-button {
    margin-left: 0;
  }

  .verification-result {
    padding: 20px;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: auto;
    bottom: auto;
    left: 50%;
    display: block;
    width: 100vw;
    height: calc(100vh - 114px);
    height: calc(100dvh - 114px);
    padding: 22px 20px 40px;
    overflow-y: auto;
    background: var(--cream-50);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }

  .nav-link,
  .nav-dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    padding-inline: 15px;
    border-radius: 12px;
    text-align: left;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 9px;
    overflow: hidden;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 220ms ease, padding 220ms ease;
  }

  .nav-dropdown.open .dropdown-menu {
    max-height: 220px;
    padding-block: 6px 12px;
    transform: none;
  }

  .dropdown-menu a {
    padding-left: 28px;
  }

  .ideation-band {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split-grid,
  .product-showcase,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .error-shell {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .error-copy > p {
    margin-inline: auto;
  }

  .error-copy .button-row {
    justify-content: center;
  }

  .error-visual {
    order: -1;
  }

  .error-visual img {
    width: min(68vw, 340px);
  }

  .hero-grid {
    gap: 20px;
    padding-top: 72px;
  }

  .hero-copy {
    text-align: center;
  }

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

  .hero-copy > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 460px;
  }

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

  .feature-art {
    min-height: 480px;
  }

  .sticky-title,
  .legal-nav {
    position: static;
  }

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

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

  .legal-nav strong {
    grid-column: 1 / -1;
  }

  .product-visual {
    min-height: 540px;
    order: -1;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }
}

@media (max-width: 740px) {
  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .announcement {
    letter-spacing: 0.08em;
  }

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

  .brand-mark {
    width: 45px;
    height: 45px;
  }

  .site-nav {
    height: calc(100vh - 106px);
    height: calc(100dvh - 106px);
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding-block: 64px 48px;
  }

  .hero-copy h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .hero-visual {
    min-height: 360px;
  }

  .floating-note {
    right: 0;
    bottom: 3px;
    max-width: 170px;
  }

  .section {
    padding-block: 76px;
  }

  .card-grid,
  .value-grid,
  .product-card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: 220px;
  }

  .page-hero {
    padding-block: 84px 78px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

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

  .timeline li {
    padding: 0 0 28px 38px;
  }

  .timeline li::before {
    top: 0;
    left: 10px;
    width: 2px;
    height: 100%;
  }

  .timeline li::after {
    top: 0;
  }

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

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    gap: 36px;
  }

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

@media (max-width: 420px) {
  .brand-name strong {
    font-size: 0.9rem;
  }

  .brand-name > span {
    font-size: 0.58rem;
  }

  .hero-actions,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 320px;
  }

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

@media (max-width: 960px) {
  .atom-home .hero-visual {
    min-height: 500px;
  }

  .atom-system {
    inset: 1% 4%;
  }

  .atom-ring {
    width: 100%;
  }
}

@media (max-width: 740px) {
  .atom-home .hero-visual {
    min-height: 410px;
  }

  .atom-particle {
    width: 11px;
    height: 11px;
    border-width: 3px;
  }
}

@media (max-width: 420px) {
  .atom-home .hero-visual {
    min-height: 350px;
  }
}
