:root {
  --ink: #0E1726;
  --panel: #0E1726;
  --panel-2: #0E1726;
  --mint: #25C38E;
  --mint-2: #25C38E;
  --soft: #E6F7F0;
  --page: #F2F4F7;
  --text: #F8FAFC;
  --muted: rgba(248, 250, 252, 0.74);
  --body: rgba(14, 23, 38, 0.72);
  --line: rgba(14, 23, 38, 0.12);
  --line-dark: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(14, 23, 38, 0.18);
  --shadow-soft: 0 18px 50px rgba(14, 23, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(248, 250, 252, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 38px;
  max-width: 168px;
}

.brand .brand-wordmark {
  display: block;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(14, 23, 38, 0.72);
  font-size: 0.95rem;
  font-weight: 650;
}

nav a {
  white-space: nowrap;
  text-decoration: none;
}

nav a:not(.nav-cta) {
  position: relative;
  padding: 8px 0;
}

nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--mint);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.5);
  transition: 160ms ease;
  content: "";
}

nav a:not(.nav-cta):hover::after,
nav a:not(.nav-cta):focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  min-height: 38px;
  padding: 9px 13px;
  color: #06120E;
  background: var(--mint);
  border-radius: 8px;
  font-weight: 850;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.86fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  min-height: min(calc(96svh - 72px), 940px);
  padding: clamp(34px, 6vw, 82px) clamp(18px, 5vw, 76px) clamp(38px, 6vw, 78px);
  background:
    radial-gradient(circle at 76% 62%, rgba(37, 195, 142, 0.16), transparent 34%),
    linear-gradient(140deg, #FFFFFF 0%, #F7F9FB 54%, var(--soft) 100%);
}

.hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 760px;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 26px;
}

.hero-brand img {
  width: min(380px, 82vw);
  height: auto;
}

.hero-brand > span {
  color: var(--ink);
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 1;
}

.hero-brand > span span {
  color: var(--mint);
}

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

h1 {
  max-width: 740px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(3.9rem, 6vw, 5.05rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 3.45rem;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.24rem;
  line-height: 1.25;
}

.lead {
  max-width: 660px;
  color: var(--body);
  font-size: 1.24rem;
  line-height: 1.58;
}

.eyebrow,
.card-label {
  display: block;
  margin: 0 0 12px;
  color: #127B59;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 10px 26px rgba(14, 23, 38, 0.14);
  transform: translateY(-1px);
}

.button.primary {
  color: #06120E;
  background: var(--mint);
}

.button.secondary {
  color: var(--ink);
  background: #FFFFFF;
  border-color: var(--line);
}

.button.dark {
  color: var(--text);
  background: var(--ink);
}

.platform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.button:disabled {
  cursor: progress;
  opacity: 0.68;
}

.checkout-label {
  display: block;
  margin: 20px 0 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
}

.checkout-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.checkout-row input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.checkout-row input:focus {
  outline: 3px solid rgba(37, 195, 142, 0.28);
  border-color: var(--mint);
}

.checkout-note {
  margin: 12px 0 0;
  color: rgba(14, 23, 38, 0.68);
  font-size: 0.92rem;
  line-height: 1.5;
}

.download-note,
.test-download-note {
  margin: 14px 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.download-note {
  color: var(--muted);
}

.test-download-note {
  padding: 12px 14px;
  color: #0A3D2E;
  background: rgba(37, 195, 142, 0.12);
  border: 1px solid rgba(37, 195, 142, 0.28);
  border-radius: 8px;
  font-weight: 750;
}

.test-download-note a {
  color: #07543D;
}

.install-note {
  margin: 16px 0 0;
  padding: 14px 16px;
  color: #102036;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-left: 4px solid var(--mint);
  border-radius: 8px;
}

.install-note strong {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 0.95rem;
}

.install-note ol {
  margin: 0;
  padding-left: 20px;
  color: rgba(14, 23, 38, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
}

.install-note p {
  margin: 10px 0 0;
  color: rgba(14, 23, 38, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
  color: rgba(14, 23, 38, 0.76);
  font-size: 0.95rem;
  font-weight: 750;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  content: "";
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 720px;
  justify-self: end;
  min-width: 0;
  min-height: 620px;
}

.hero-copy,
.device-frame,
.desktop-window,
.desktop-preview,
.platform-card,
.feature-grid article,
.license-card {
  min-width: 0;
}

.device-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(14, 23, 38, 0.12);
  box-shadow: var(--shadow);
}

.device-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.device-frame figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 12px;
  color: var(--text);
  background: rgba(14, 23, 38, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

.ipad-frame {
  aspect-ratio: 3 / 4;
  padding: 10px;
  background: #0E1726;
  border-radius: 24px;
}

.ipad-frame img {
  border-radius: 16px;
}

.main-shot {
  top: 4px;
  left: 0;
  z-index: 1;
  width: min(430px, 62vw);
}

.floating-shot {
  right: 0;
  bottom: 8px;
  z-index: 2;
  width: min(380px, 54vw);
  transform: translateY(6px);
}

.mobile-showcase {
  min-height: 660px;
}

.mobile-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(14, 23, 38, 0.12);
  border-radius: 26px;
  box-shadow: var(--shadow);
  aspect-ratio: 0.48;
}

.mobile-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.primary-shot {
  top: 0;
  left: 6%;
  z-index: 2;
  width: min(350px, 46vw);
}

.secondary-shot {
  top: 94px;
  right: 0;
  z-index: 3;
  width: min(286px, 36vw);
  transform: rotate(2.4deg);
}

.tertiary-shot {
  bottom: 6px;
  left: 0;
  z-index: 1;
  width: min(246px, 32vw);
  transform: rotate(-2.2deg);
}

.mini-shot {
  top: 92px;
  right: 44px;
  z-index: 3;
  width: min(180px, 24vw);
}

.desktop-window {
  position: absolute;
  top: 18px;
  right: 0;
  left: 0;
  overflow: hidden;
  min-height: 410px;
  color: var(--text);
  background: var(--ink);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid var(--line-dark);
}

.window-bar::before {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  box-shadow:
    18px 0 0 rgba(255, 255, 255, 0.32),
    36px 0 0 rgba(255, 255, 255, 0.32);
  content: "";
}

.desktop-preview {
  display: grid;
  gap: 18px;
  padding: 28px 238px 28px 28px;
}

.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  font-weight: 850;
}

.preview-toolbar span {
  color: var(--muted);
}

.preview-toolbar strong {
  color: var(--mint-2);
  font-size: 0.92rem;
}

.preview-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.preview-actions div {
  padding: 18px;
  background: var(--panel-2);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
}

.preview-actions strong,
.preview-actions span {
  display: block;
}

.preview-actions strong {
  margin-bottom: 7px;
  color: var(--mint-2);
  font-size: 1rem;
}

.preview-actions span {
  color: var(--muted);
  line-height: 1.45;
}

.preview-document {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 166px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(14, 23, 38, 0.05);
}

.preview-document span {
  display: block;
  height: 12px;
  background: rgba(14, 23, 38, 0.13);
  border-radius: 999px;
}

.preview-document span:first-child {
  width: 62%;
  background: rgba(37, 195, 142, 0.55);
}

.preview-document span:nth-child(2) {
  width: 86%;
}

.preview-document span:nth-child(3) {
  width: 72%;
}

.preview-document span:nth-child(4) {
  width: 44%;
}

.preview-document strong {
  width: 134px;
  margin-top: 8px;
  color: #0E1726;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  transform: rotate(-5deg);
}

.preview-document em {
  width: max-content;
  padding: 6px 10px;
  color: #0E1726;
  background: rgba(37, 195, 142, 0.18);
  border: 1px solid rgba(37, 195, 142, 0.38);
  border-radius: 999px;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
}

.preview-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preview-tools span {
  padding: 8px 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.phone {
  position: absolute;
  right: 28px;
  bottom: 0;
  width: min(226px, 34vw);
  aspect-ratio: 9 / 19.5;
  padding: 8px;
  overflow: hidden;
  background: #0A101A;
  border: 1px solid rgba(14, 23, 38, 0.25);
  border-radius: 34px;
  box-shadow: 0 22px 60px rgba(14, 23, 38, 0.24);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: var(--page);
  border-radius: 28px;
}

.mini-shot img {
  object-fit: cover;
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-heading p,
.pricing-copy p,
.support-section p {
  max-width: 760px;
  color: var(--body);
  line-height: 1.62;
}

.download-section {
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(37, 195, 142, 0.16), transparent 34%),
    var(--ink);
}

.download-section .section-heading p,
.download-section .eyebrow {
  color: var(--muted);
}

.download-section .card-label {
  color: var(--mint-2);
}

.download-section h2 {
  color: var(--text);
}

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

.platform-card,
.feature-grid article,
.license-card {
  padding: 24px;
  border-radius: 14px;
}

.platform-card {
  display: flex;
  flex-direction: column;
  min-height: 290px;
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--line-dark);
}

.platform-card.featured {
  background: #0B221D;
  border-color: rgba(37, 195, 142, 0.52);
}

.platform-card.featured:first-child {
  background:
    radial-gradient(circle at 96% 8%, rgba(37, 195, 142, 0.22), transparent 38%),
    #0B221D;
}

.platform-card p,
.feature-grid article p,
.license-card p,
.license-card li,
.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.62;
}

.platform-card > .button {
  align-self: flex-start;
  margin-top: auto;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

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

.license-card {
  color: var(--ink);
  background: var(--soft);
  border: 1px solid rgba(37, 195, 142, 0.22);
  box-shadow: var(--shadow-soft);
}

.license-card.featured {
  grid-column: 1 / -1;
  background: #FFFFFF;
  border-color: rgba(37, 195, 142, 0.42);
}

.license-card p,
.license-card li {
  color: var(--body);
}

.price-note {
  margin-top: -8px;
  font-weight: 800;
  color: rgba(14, 23, 38, 0.62);
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(14, 23, 38, 0.12);
}

.price-line strong {
  font-size: 2rem;
  line-height: 1.1;
}

.price-line span {
  color: rgba(14, 23, 38, 0.68);
  font-weight: 800;
}

.license-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  padding-left: 20px;
}

.feature-section {
  background: var(--page);
}

.workflow-links-section {
  background: #FFFFFF;
}

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

.workflow-card,
.content-grid > div {
  min-width: 0;
  padding: 24px;
  color: var(--ink);
  background: #F8FAFC;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.workflow-card {
  display: block;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.workflow-card:hover,
.workflow-card:focus-visible {
  border-color: rgba(37, 195, 142, 0.42);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.workflow-card p,
.content-grid > div p,
.use-case-section p {
  color: var(--body);
  line-height: 1.6;
}

.use-case-section {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.use-case-section h2,
.content-grid h2 {
  font-size: 1.6rem;
}

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

.feature-grid article {
  min-height: 236px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: #06120E;
  background: var(--mint);
  border-radius: 8px;
  font-weight: 900;
}

.privacy-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--soft);
}

.privacy-panel div {
  max-width: 780px;
}

.privacy-panel p {
  color: var(--body);
  line-height: 1.62;
}

.faq-section {
  background: #FFFFFF;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  padding: 20px 22px;
  background: #F8FAFC;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 850;
}

.faq-list summary:focus-visible {
  outline: 3px solid rgba(37, 195, 142, 0.42);
  outline-offset: 4px;
  border-radius: 6px;
}

.faq-list p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--body);
  line-height: 1.58;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  background: #FFFFFF;
}

.support-actions {
  margin-top: 0;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 76px);
  color: var(--muted);
  background: var(--ink);
}

footer a {
  color: var(--text);
  text-decoration: none;
}

.menu-toggle {
  display: none;
}

.site-footer {
  padding: 0;
  color: var(--muted);
  background: var(--ink);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(0, 2.1fr);
  gap: clamp(28px, 5vw, 72px);
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px clamp(18px, 5vw, 76px) 30px;
}

.footer-brand-block {
  max-width: 320px;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text);
  font-size: 1.14rem;
  font-weight: 850;
  text-decoration: none;
}

.footer-brand-link img {
  width: auto;
  height: 42px;
  max-width: 190px;
}

.footer-brand-link.footer-brand-lockup {
  color: #FFFFFF;
}

.footer-brand-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.footer-title {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: rgba(248, 250, 252, 0.76);
  font-size: 0.94rem;
  line-height: 1.35;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px clamp(18px, 5vw, 76px) 24px;
  border-top: 1px solid var(--line-dark);
  color: rgba(248, 250, 252, 0.62);
  font-size: 0.88rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(37, 195, 142, 0.42);
  outline-offset: 3px;
}

.policy-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(36px, 7vw, 84px) 18px;
}

.policy-card {
  padding: clamp(24px, 5vw, 48px);
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-card h1 {
  margin-bottom: 22px;
  font-size: 3.1rem;
  line-height: 1.03;
}

.policy-card p,
.policy-card li {
  color: var(--body);
}

.success-card strong {
  color: var(--ink);
}

.policy-card ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.support-list {
  margin: 26px 0;
}

.trust-card h2 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.2;
}

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

.trust-grid section,
.trust-proof div {
  min-width: 0;
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.trust-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.trust-proof strong,
.trust-proof span {
  display: block;
}

.trust-proof strong {
  margin-bottom: 6px;
  color: #127B59;
}

.trust-proof span {
  color: rgba(14, 23, 38, 0.72);
  line-height: 1.45;
}

@media (max-width: 1120px) {
  h1 {
    font-size: clamp(3.35rem, 7vw, 4.45rem);
  }

  h2 {
    font-size: 2.85rem;
  }

  .hero,
  .pricing-section,
  .trust-grid,
  .trust-proof,
  .support-section {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
    gap: 42px;
  }

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

  .hero-visual {
    justify-self: start;
    max-width: 760px;
    min-height: 620px;
  }

  .mobile-showcase {
    justify-self: center;
    max-width: 680px;
    min-height: 640px;
  }

  .desktop-preview {
    padding-right: 214px;
  }

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

}

@media (max-width: 900px) {
  .site-header,
  nav,
  .hero-actions,
  .privacy-panel {
    align-items: flex-start;
  }

  .site-header,
  .privacy-panel {
    flex-direction: column;
  }

  nav {
    width: 100%;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 2px;
  }

  .hero-visual {
    display: grid;
    max-width: 620px;
    min-height: auto;
    gap: 14px;
  }

  .mobile-showcase {
    position: relative;
    display: grid;
    min-height: 560px;
    max-width: 560px;
    place-items: center;
  }

  .device-frame,
  .phone,
  .mini-shot,
  .main-shot,
  .floating-shot {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100%, 520px);
    transform: none;
  }

  .floating-shot {
    justify-self: end;
    width: min(86%, 460px);
    margin-top: -70px;
  }

  .mobile-shot {
    position: absolute;
  }

  .primary-shot {
    left: 8%;
    width: min(330px, 58vw);
  }

  .secondary-shot {
    right: 3%;
    width: min(250px, 43vw);
  }

  .tertiary-shot {
    width: min(210px, 36vw);
  }

  .mini-shot {
    display: none;
  }

  .desktop-window {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
  }

  .desktop-preview {
    padding-right: 28px;
  }

  .phone {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: end;
    margin-top: -44px;
    margin-right: 22px;
    width: min(220px, 38vw);
  }

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

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

  .support-actions {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 14px;
    min-height: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand img {
    width: auto;
    height: 32px;
    max-width: 142px;
  }

  nav {
    gap: 8px 14px;
    font-size: 0.9rem;
  }

  .nav-cta {
    display: none;
  }

  .hero-brand img {
    width: min(260px, 78vw);
    height: auto;
  }

  .hero-brand > span {
    font-size: 2.42rem;
  }

  .hero-brand {
    gap: 12px;
    margin-bottom: 18px;
  }

  .hero-copy,
  .hero-visual {
    max-width: 100%;
  }

  .hero-copy,
  .lead,
  .trust-row,
  .hero-actions {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 9vw, 2.32rem);
    line-height: 1.06;
    text-wrap: balance;
    overflow-wrap: break-word;
  }

  h2,
  .policy-card h1 {
    font-size: 2.25rem;
  }

  .lead {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    overflow-wrap: break-word;
  }

  .hero-visual {
    display: grid;
    min-height: auto;
    gap: 12px;
  }

  .mobile-showcase {
    display: grid;
    width: 100%;
    min-height: 440px;
    place-items: center;
  }

  .mobile-shot {
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(14, 23, 38, 0.16);
    aspect-ratio: 0.58;
  }

  .primary-shot {
    position: relative;
    inset: auto;
    width: min(100%, 340px);
    max-height: 520px;
    transform: none;
  }

  .secondary-shot,
  .tertiary-shot {
    display: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

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

  .desktop-window {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    min-height: 312px;
    width: 100%;
    border-radius: 16px;
  }

  .desktop-preview {
    gap: 14px;
    padding: 18px;
  }

  .preview-toolbar {
    display: grid;
    justify-content: start;
    padding: 12px 13px;
    font-size: 0.9rem;
  }

  .preview-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .preview-actions div {
    padding: 14px;
  }

  .preview-actions span {
    font-size: 0.92rem;
  }

  .phone {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: end;
    margin-top: -64px;
    margin-right: 10px;
    width: min(162px, 44vw);
  }

  .device-frame,
  .main-shot,
  .floating-shot {
    width: 100%;
  }

  .floating-shot {
    margin-top: 0;
  }

  .device-frame figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 8px 10px;
    font-size: 0.78rem;
  }

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

  .price-line {
    display: block;
  }

  .price-line strong,
  .price-line span {
    display: block;
  }

  .price-line span {
    margin-top: 6px;
  }

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

@media (max-width: 480px) {
  .trust-row {
    gap: 10px 12px;
  }

  .phone {
    width: 142px;
  }

  .ipad-frame {
    padding: 7px;
    border-radius: 18px;
  }

  .ipad-frame img {
    border-radius: 12px;
  }

  .desktop-preview {
    padding-bottom: 70px;
  }

  .hero {
    padding-top: 26px;
  }

  .mobile-showcase {
    min-height: 410px;
  }

  .primary-shot {
    width: min(100%, 330px);
    max-height: 500px;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    flex-direction: row;
    align-items: center;
    min-height: 62px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 12px;
    color: var(--ink);
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
    font-size: 0.94rem;
    font-weight: 800;
    cursor: pointer;
  }

  .menu-bars,
  .menu-bars::before,
  .menu-bars::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 999px;
    content: "";
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .menu-bars {
    position: relative;
  }

  .menu-bars::before,
  .menu-bars::after {
    position: absolute;
    left: 0;
  }

  .menu-bars::before {
    top: -6px;
  }

  .menu-bars::after {
    top: 6px;
  }

  .site-header[data-menu-open="true"] .menu-bars {
    background: transparent;
  }

  .site-header[data-menu-open="true"] .menu-bars::before {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header[data-menu-open="true"] .menu-bars::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    z-index: 1001;
    top: calc(100% + 8px);
    right: clamp(12px, 4vw, 28px);
    left: clamp(12px, 4vw, 28px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    width: auto;
    max-height: min(72vh, 520px);
    padding: 10px;
    overflow-y: auto;
    color: var(--ink);
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 22px 70px rgba(14, 23, 38, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    visibility: hidden;
    transition: transform 160ms ease, visibility 0s linear 160ms;
  }

  .site-header[data-menu-open="true"] .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition: transform 160ms ease;
  }

  .site-nav a,
  .site-nav a:not(.nav-cta) {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    color: var(--ink);
    font-weight: 800;
    background: #FFFFFF;
    border: 1px solid transparent;
    border-radius: 8px;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav a:not(.nav-cta):hover,
  .site-nav a:not(.nav-cta):focus-visible {
    background: rgba(37, 195, 142, 0.1);
    border-color: rgba(37, 195, 142, 0.18);
  }

  .site-nav .nav-cta {
    display: flex;
    justify-content: center;
    margin-top: 4px;
    color: #06120E;
    background: var(--mint);
    border-color: transparent;
  }

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

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
  }

  .menu-toggle-label {
    display: none;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

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

  .footer-bottom {
    display: grid;
  }
}

/* Current iPhone and iPad positioning */
body[data-page="home"],
body[data-page="organic"] {
  --home-ink: #0E1726;
  --home-mint: #25C38E;
  --home-action: #087552;
  --home-blue: #2B73EB;
  --home-amber: #B85F08;
  --home-page: #F2F4F7;
  --home-surface: #FFFFFF;
  --home-soft: #E6F7F0;
  --home-line: rgba(14, 23, 38, 0.13);
  --home-muted: rgba(14, 23, 38, 0.68);
  color: var(--home-ink);
  background: var(--home-page);
}

body[data-page="home"] *,
body[data-page="organic"] * {
  letter-spacing: 0;
}

body[data-page="home"] main,
body[data-page="organic"] main {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 14px;
  color: #FFFFFF;
  background: var(--home-ink);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

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

body[data-page="home"] .site-header,
body[data-page="organic"] .site-header {
  min-height: 70px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.96);
}

.brand-lockup {
  gap: 10px;
  color: var(--home-ink);
  font-size: 1.2rem;
  font-weight: 850;
}

.brand-lockup img,
body[data-page="home"] .brand-lockup img,
body[data-page="organic"] .brand-lockup img {
  width: 38px;
  height: 38px;
  max-width: none;
  border-radius: 8px;
}

body[data-page="home"] .site-nav,
body[data-page="organic"] .site-nav {
  color: rgba(14, 23, 38, 0.76);
}

body[data-page="home"] .nav-cta,
body[data-page="organic"] .nav-cta {
  color: #04110C;
  background: var(--home-mint);
}

.home-hero {
  display: grid;
  grid-template-rows: auto minmax(210px, 1fr);
  height: min(800px, calc(100svh - 106px));
  min-height: 680px;
  max-height: 800px;
  padding: 50px 24px 0;
  overflow: hidden;
  background: #EDF2F4;
  border-bottom: 1px solid var(--home-line);
}

.home-hero-copy {
  position: relative;
  z-index: 4;
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-platform,
.organic-kicker {
  margin: 0 0 12px;
  color: var(--home-action);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

body[data-page="home"] .home-hero h1 {
  max-width: none;
  margin: 0;
  color: var(--home-ink);
  font-size: 4rem;
  line-height: 1.03;
}

.hero-slogan {
  margin: 14px 0 0;
  color: var(--home-ink);
  font-size: 1.85rem;
  font-weight: 780;
  line-height: 1.18;
}

.hero-summary {
  max-width: 760px;
  margin: 15px auto 0;
  color: var(--home-muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

body[data-page="home"] .hero-actions,
body[data-page="organic"] .hero-actions {
  justify-content: center;
  margin-top: 22px;
}

body[data-page="home"] .button,
body[data-page="organic"] .button {
  border-radius: 8px;
}

body[data-page="home"] .button.primary,
body[data-page="organic"] .button.primary {
  color: #04110C;
  background: var(--home-mint);
}

body[data-page="home"] .button.secondary,
body[data-page="organic"] .button.secondary {
  color: var(--home-ink);
  background: #FFFFFF;
  border-color: var(--home-line);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: center;
  margin: 18px 0 0;
  padding: 0;
  color: rgba(14, 23, 38, 0.72);
  font-size: 0.88rem;
  font-weight: 750;
  list-style: none;
}

.hero-trust li {
  position: relative;
  padding-left: 14px;
}

.hero-trust li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--home-mint);
  border-radius: 50%;
  content: "";
}

.home-hero-screens {
  position: relative;
  width: min(1040px, 100%);
  min-height: 0;
  margin: 24px auto 0;
}

.hero-screen {
  position: absolute;
  bottom: -250px;
  margin: 0;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(14, 23, 38, 0.18);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(14, 23, 38, 0.18);
}

.hero-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-screen-ipad {
  left: 50%;
  bottom: -405px;
  width: 610px;
  transform: translateX(-64%);
}

.hero-screen-iphone {
  right: 17%;
  bottom: -330px;
  z-index: 2;
  width: 250px;
}

.home-section {
  scroll-margin-top: 72px;
}

.path-ribbon {
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 20px;
  color: rgba(14, 23, 38, 0.68);
  background: #FFFFFF;
  border-bottom: 1px solid var(--home-line);
  font-size: 0.88rem;
  font-weight: 820;
}

.home-section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.paths-section,
.plans-section,
.more-section,
.home-faq-section {
  padding: 88px 24px;
}

.paths-section {
  padding-top: 0;
  background: #FFFFFF;
}

.paths-section .home-section-inner {
  padding-top: 88px;
}

.home-section-heading {
  max-width: 800px;
  margin-bottom: 36px;
}

.home-section-heading .eyebrow,
.home-cta .eyebrow,
body[data-page="organic"] .eyebrow {
  margin-bottom: 12px;
  color: var(--home-action);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

body[data-page="home"] .home-section-heading h2,
body[data-page="home"] .privacy-home-section h2,
body[data-page="home"] .home-cta h2 {
  margin-bottom: 16px;
  color: var(--home-ink);
  font-size: 2.65rem;
  line-height: 1.08;
}

.home-section-heading > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--home-muted);
  font-size: 1.04rem;
  line-height: 1.62;
}

.compact-heading {
  max-width: 700px;
}

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

.path-card {
  display: grid;
  grid-template-rows: 360px auto;
  min-width: 0;
  overflow: hidden;
  background: #F8FAFC;
  border: 1px solid var(--home-line);
  border-top: 4px solid var(--home-mint);
  border-radius: 8px;
}

.path-memories {
  border-top-color: var(--home-blue);
}

.path-collections {
  border-top-color: var(--home-amber);
}

.path-card-media {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background: #E8EEF2;
  border-bottom: 1px solid var(--home-line);
}

.path-card-media img {
  display: block;
  width: 68%;
  height: auto;
  margin-top: 20px;
  border: 1px solid rgba(14, 23, 38, 0.14);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 20px 48px rgba(14, 23, 38, 0.16);
}

.path-card-media-wide img {
  width: 104%;
  max-width: none;
  margin-top: 18px;
  border-radius: 16px 16px 0 0;
}

.path-card-copy {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 26px;
}

.path-number {
  margin: 0 0 18px;
  color: rgba(14, 23, 38, 0.48);
  font-size: 0.78rem;
  font-weight: 850;
}

body[data-page="home"] .path-card h3 {
  margin-bottom: 10px;
  color: var(--home-ink);
  font-size: 1.65rem;
}

.path-card-copy > p:not(.path-number) {
  margin-bottom: 22px;
  color: var(--home-muted);
  line-height: 1.58;
}

.text-link {
  color: var(--home-action);
  font-weight: 820;
  line-height: 1.4;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.path-card .text-link {
  margin-top: auto;
}

.path-links {
  display: grid;
  gap: 9px;
  margin-top: auto;
}

.path-links .text-link {
  margin-top: 0;
}

.privacy-home-section {
  padding: 86px 24px;
  color: #F8FAFC;
  background: var(--home-ink);
}

.privacy-home-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.privacy-home-section .eyebrow {
  color: #82E5C3;
}

body[data-page="home"] .privacy-home-section h2 {
  color: #FFFFFF;
}

.privacy-lead {
  max-width: 620px;
  color: rgba(248, 250, 252, 0.76);
  font-size: 1.03rem;
  line-height: 1.66;
}

.text-link-light {
  color: #82E5C3;
}

.privacy-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-points li {
  padding-left: 16px;
  border-left: 3px solid var(--home-mint);
}

.privacy-points strong,
.privacy-points span {
  display: block;
}

.privacy-points strong {
  margin-bottom: 7px;
  color: #FFFFFF;
  font-size: 1.02rem;
}

.privacy-points span {
  color: rgba(248, 250, 252, 0.69);
  font-size: 0.93rem;
  line-height: 1.5;
}

.plans-section {
  background: #FFFFFF;
}

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

.plan-card {
  min-width: 0;
  padding: 28px;
  background: #F8FAFC;
  border: 1px solid var(--home-line);
  border-radius: 8px;
}

.plan-card-pro {
  background: #F0F6FF;
  border-color: rgba(43, 115, 235, 0.42);
}

.plan-label {
  width: max-content;
  margin: 0 0 22px;
  color: var(--home-action);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.plan-card-pro .plan-label {
  color: #1759C0;
}

body[data-page="home"] .plan-card h3 {
  margin-bottom: 18px;
  font-size: 1.38rem;
}

.plan-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 19px;
  color: var(--home-muted);
  line-height: 1.48;
}

.plan-action {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--home-line);
}

.plan-action p {
  margin: 0;
  color: var(--home-muted);
}

.more-section {
  background: #E8EEF2;
}

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

.secondary-paths > a {
  display: block;
  min-width: 0;
  padding: 26px;
  color: var(--home-ink);
  background: #FFFFFF;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.secondary-paths > a:hover,
.secondary-paths > a:focus-visible {
  border-color: rgba(8, 117, 82, 0.45);
  box-shadow: 0 16px 36px rgba(14, 23, 38, 0.11);
  transform: translateY(-2px);
}

.secondary-path-label,
.secondary-paths strong,
.secondary-path-action {
  display: block;
}

.secondary-path-label {
  margin-bottom: 16px;
  color: var(--home-action);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.secondary-paths strong {
  margin-bottom: 9px;
  font-size: 1.35rem;
}

.secondary-paths p {
  max-width: 560px;
  color: var(--home-muted);
  line-height: 1.58;
}

.secondary-path-action {
  color: var(--home-action);
  font-weight: 820;
}

.home-faq-section {
  background: #FFFFFF;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.55fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

body[data-page="home"] .faq-list,
body[data-page="organic"] .faq-list {
  max-width: none;
}

body[data-page="home"] .faq-list details,
body[data-page="organic"] .faq-list details {
  background: #F8FAFC;
  border-color: var(--home-line);
  border-radius: 8px;
}

.home-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 46px max(24px, calc((100% - 1180px) / 2));
  color: #FFFFFF;
  background: #172944;
}

.home-cta > img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
}

.home-cta .eyebrow {
  color: #82E5C3;
}

body[data-page="home"] .home-cta h2 {
  margin: 0;
  color: #FFFFFF;
  font-size: 2rem;
}

.home-footer {
  display: block;
  padding: 0;
  background: var(--home-ink);
}

.home-footer-main,
.home-footer-bottom {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.home-footer-main {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}

.footer-brand-lockup {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #FFFFFF;
  font-size: 1.08rem;
  font-weight: 850;
  text-decoration: none;
}

.footer-brand-lockup img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.home-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: flex-end;
  color: rgba(248, 250, 252, 0.76);
  font-size: 0.9rem;
}

.home-footer-links a {
  color: inherit;
}

.home-footer-bottom {
  display: flex;
  gap: 12px 20px;
  justify-content: space-between;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(248, 250, 252, 0.58);
  font-size: 0.84rem;
}

/* Organic iPhone and iPad landing paths */
.organic-hero {
  display: grid;
  grid-template-rows: auto minmax(270px, 1fr);
  min-height: 650px;
  max-height: 760px;
  padding: 52px 24px 0;
  overflow: hidden;
  text-align: center;
  background: #EDF2F4;
  border-bottom: 1px solid var(--home-line);
}

.organic-hero-copy {
  position: relative;
  z-index: 3;
  width: min(820px, 100%);
  margin: 0 auto;
}

body[data-page="organic"] .organic-hero h1 {
  max-width: none;
  margin: 0;
  color: var(--home-ink);
  font-size: 3.65rem;
  line-height: 1.05;
}

.organic-hero-lead {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--home-muted);
  font-size: 1.08rem;
  line-height: 1.58;
}

.organic-hero-screens {
  position: relative;
  width: min(900px, 100%);
  min-height: 0;
  margin: 26px auto 0;
}

.organic-screen {
  position: absolute;
  bottom: -280px;
  margin: 0;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(14, 23, 38, 0.16);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(14, 23, 38, 0.17);
}

.organic-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.organic-screen-phone {
  left: 50%;
  width: 270px;
  transform: translateX(-50%);
}

.organic-screen-phone-secondary {
  left: calc(50% + 185px);
  bottom: -330px;
  width: 230px;
}

.organic-screen-ipad {
  left: 50%;
  bottom: -470px;
  width: 650px;
  transform: translateX(-50%);
}

.organic-section {
  padding: 82px 24px;
  scroll-margin-top: 72px;
}

.organic-section:nth-of-type(odd) {
  background: #FFFFFF;
}

.organic-section-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.organic-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

body[data-page="organic"] .organic-heading h2,
body[data-page="organic"] .organic-proof-copy h2,
body[data-page="organic"] .organic-truth h2,
body[data-page="organic"] .organic-cta h2 {
  margin-bottom: 14px;
  color: var(--home-ink);
  font-size: 2.5rem;
  line-height: 1.1;
}

.organic-heading > p:last-child,
.organic-proof-copy > p,
.organic-truth p {
  color: var(--home-muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

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

.workflow-steps article {
  min-width: 0;
  padding-top: 18px;
  border-top: 3px solid var(--home-mint);
}

.workflow-step-number {
  display: block;
  margin-bottom: 18px;
  color: var(--home-action);
  font-size: 0.8rem;
  font-weight: 850;
}

body[data-page="organic"] .workflow-steps h3 {
  margin-bottom: 9px;
  font-size: 1.12rem;
}

.workflow-steps p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.organic-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.organic-proof-media {
  max-height: 620px;
  overflow: hidden;
  background: #E8EEF2;
  border: 1px solid var(--home-line);
  border-radius: 8px;
}

.organic-proof-media img {
  display: block;
  width: 100%;
  height: auto;
}

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

.organic-feature-list li {
  padding: 13px 0 13px 20px;
  border-bottom: 1px solid var(--home-line);
  border-left: 3px solid var(--home-mint);
  color: rgba(14, 23, 38, 0.76);
  line-height: 1.5;
}

.organic-truth-section {
  color: #F8FAFC;
  background: var(--home-ink) !important;
}

.organic-truth {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

body[data-page="organic"] .organic-truth h2 {
  color: #FFFFFF;
}

.organic-truth .eyebrow {
  color: #82E5C3;
}

.organic-truth p {
  color: rgba(248, 250, 252, 0.75);
}

.organic-truth-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.organic-truth-list li {
  padding: 0 0 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--home-mint);
  color: rgba(248, 250, 252, 0.78);
  line-height: 1.52;
}

.organic-plan-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 28px;
  background: var(--home-soft);
  border: 1px solid rgba(37, 195, 142, 0.35);
  border-radius: 8px;
}

.organic-plan-note h2 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.organic-plan-note p {
  max-width: 720px;
  margin: 0;
  color: var(--home-muted);
  line-height: 1.56;
}

.organic-faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

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

.related-grid a {
  display: block;
  min-width: 0;
  padding: 24px;
  color: var(--home-ink);
  background: #F8FAFC;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  text-decoration: none;
}

.related-grid strong,
.related-grid span {
  display: block;
}

.related-grid strong {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.related-grid span {
  color: var(--home-muted);
  line-height: 1.5;
}

.organic-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 50px max(24px, calc((100% - 1080px) / 2));
  background: #E8EEF2;
}

.organic-cta p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--home-muted);
  line-height: 1.55;
}

@media (max-width: 1100px) {
  body[data-page="home"] .home-hero h1 {
    font-size: 3.25rem;
  }

  .hero-slogan {
    font-size: 1.6rem;
  }

  .hero-screen-ipad {
    width: 550px;
  }

  .hero-screen-iphone {
    right: 12%;
  }

  .path-card {
    grid-template-rows: 320px auto;
  }

  .path-card-copy {
    padding: 22px;
  }

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

@media (max-width: 900px) {
  body[data-page="home"] .site-header,
  body[data-page="organic"] .site-header {
    min-height: 64px;
    padding: 10px 18px;
  }

  .home-hero {
    height: min(760px, calc(100svh - 100px));
    min-height: 620px;
    padding-top: 40px;
  }

  .hero-screen-ipad {
    left: 47%;
    width: 510px;
  }

  .hero-screen-iphone {
    right: 6%;
    width: 225px;
  }

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

  .path-card {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
    grid-template-rows: 400px;
  }

  .path-card-copy {
    min-height: 0;
  }

  .path-card-media img {
    width: 70%;
  }

  .path-card-media-wide img {
    width: 120%;
  }

  .privacy-home-inner,
  .faq-layout,
  .organic-proof,
  .organic-truth,
  .organic-faq-layout {
    grid-template-columns: 1fr;
  }

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

  .home-cta {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .home-cta .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  body[data-page="organic"] .organic-hero h1 {
    font-size: 3rem;
  }

  .organic-screen-ipad {
    width: 590px;
  }

  .organic-proof-media {
    width: min(620px, 100%);
    max-height: 540px;
  }

  .organic-truth,
  .organic-faq-layout {
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .brand-lockup img,
  body[data-page="home"] .brand-lockup img,
  body[data-page="organic"] .brand-lockup img {
    width: 34px;
    height: 34px;
  }

  .brand-lockup {
    font-size: 1.06rem;
  }

  body[data-page="home"] .site-nav,
  body[data-page="organic"] .site-nav {
    right: 12px;
    left: 12px;
    max-height: min(66vh, 430px);
  }

  .home-hero {
    grid-template-rows: auto minmax(145px, 1fr);
    height: calc(100svh - 98px);
    min-height: 490px;
    max-height: 680px;
    padding: 26px 16px 0;
  }

  body[data-page="home"] .home-hero h1 {
    font-size: 2.25rem;
    line-height: 1.06;
  }

  .hero-platform {
    margin-bottom: 8px;
    font-size: 0.74rem;
  }

  .hero-slogan {
    margin-top: 9px;
    font-size: 1.25rem;
  }

  .hero-summary {
    margin-top: 10px;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  body[data-page="home"] .hero-actions,
  body[data-page="organic"] .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 15px;
  }

  body[data-page="home"] .hero-actions .button,
  body[data-page="organic"] .hero-actions .button {
    width: 100%;
    min-height: 44px;
  }

  .hero-trust {
    gap: 6px 12px;
    margin-top: 11px;
    font-size: 0.72rem;
  }

  .hero-screen-ipad {
    display: none;
  }

  .home-hero-screens {
    margin-top: 10px;
  }

  .hero-screen-iphone {
    right: auto;
    bottom: -260px;
    left: 50%;
    width: 205px;
    transform: translateX(-50%);
  }

  .path-ribbon {
    gap: 18px;
    min-height: 46px;
    padding: 10px 12px;
    font-size: 0.7rem;
  }

  .paths-section,
  .plans-section,
  .more-section,
  .home-faq-section,
  .organic-section {
    padding: 62px 16px;
  }

  .paths-section {
    padding-top: 0;
  }

  .paths-section .home-section-inner {
    padding-top: 62px;
  }

  body[data-page="home"] .home-section-heading h2,
  body[data-page="home"] .privacy-home-section h2,
  body[data-page="home"] .home-cta h2,
  body[data-page="organic"] .organic-heading h2,
  body[data-page="organic"] .organic-proof-copy h2,
  body[data-page="organic"] .organic-truth h2,
  body[data-page="organic"] .organic-cta h2 {
    font-size: 2rem;
  }

  .path-card {
    grid-template-columns: 1fr;
    grid-template-rows: 280px auto;
  }

  .path-card-media img {
    width: min(68%, 230px);
    margin-top: 14px;
  }

  .path-card-media-wide img {
    width: 110%;
    max-width: none;
  }

  .path-card-copy {
    min-height: 265px;
    padding: 22px;
  }

  .privacy-home-section {
    padding: 62px 16px;
  }

  .privacy-home-inner {
    gap: 40px;
  }

  .privacy-points {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .plan-action,
  .home-footer-main,
  .organic-plan-note,
  .organic-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .plan-action .button,
  .organic-plan-note .button,
  .organic-cta .button {
    width: 100%;
  }

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

  .home-cta {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 36px 16px;
  }

  .home-cta > img {
    width: 54px;
    height: 54px;
  }

  .home-footer-main,
  .home-footer-bottom {
    width: calc(100% - 32px);
  }

  .home-footer-main {
    align-items: start;
  }

  .home-footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: start;
    width: 100%;
  }

  .home-footer-bottom {
    display: grid;
  }

  .organic-hero {
    grid-template-rows: auto minmax(190px, 1fr);
    min-height: 570px;
    max-height: 680px;
    padding: 32px 16px 0;
  }

  body[data-page="organic"] .organic-hero h1 {
    font-size: 2.35rem;
  }

  .organic-hero-lead {
    margin-top: 11px;
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .organic-hero-screens {
    margin-top: 16px;
  }

  .organic-screen-phone {
    bottom: -220px;
    width: 215px;
  }

  .organic-screen-phone-secondary {
    display: none;
  }

  .organic-screen-ipad {
    bottom: -300px;
    width: 420px;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .organic-proof {
    gap: 34px;
  }

  .organic-proof-media {
    max-height: 440px;
  }

  .organic-plan-note {
    padding: 22px;
  }
}

@media (max-width: 380px) {
  body[data-page="home"] .home-hero h1 {
    font-size: 2rem;
  }

  .hero-summary {
    font-size: 0.88rem;
  }

  .hero-trust li:last-child {
    display: none;
  }

  body[data-page="organic"] .organic-hero h1 {
    font-size: 2.08rem;
  }
}

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

  .button,
  .secondary-paths > a,
  nav a::after,
  .menu-bars,
  .menu-bars::before,
  .menu-bars::after {
    transition: none;
  }
}
