:root {
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --shopify: #95bf47;
  --shopify-deep: #5e8e3e;
  --teal: #00b4a6;
  --teal-deep: #00968a;
  --mist: #f3f6f2;
  --fog: #f7f8f6;
  --chalk: #ffffff;
  --stone: #5c6368;
  --line: rgba(10, 10, 10, 0.1);
  --line-strong: rgba(10, 10, 10, 0.16);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(10, 10, 10, 0.1);
  --radius: 14px;
  --radius-sm: 10px;
  --shell: min(1120px, calc(100% - 2.5rem));
  --font-display: "Syne", sans-serif;
  --font-body: "Sora", sans-serif;
  --header-h: 4.5rem;
  --offers-h: 2.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(149, 191, 71, 0.08), transparent 55%),
    radial-gradient(900px 400px at 100% 20%, rgba(0, 180, 166, 0.06), transparent 50%),
    var(--fog);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

h1,
h2,
h3,
strong {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin: 0;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
  color: var(--stone);
}

p:last-child {
  margin-bottom: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--shopify);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 100;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--shopify);
}

.section {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}

.section-intro {
  max-width: 38rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.1rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease,
    color 0.25s ease;
}

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

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

.btn-primary:hover {
  background: var(--teal-deep);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--teal);
  background: rgba(0, 180, 166, 0.06);
  color: var(--teal-deep);
}

.btn-block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--shopify-deep);
}

.text-link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--ink);
  min-width: 0;
}

.brand-logo {
  width: auto;
  height: 2.75rem;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--ink);
}

.brand-tag {
  font-size: 0.7rem;
  color: var(--stone);
  letter-spacing: 0.04em;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--teal-deep);
}

.nav-cta {
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-sm);
  background: var(--teal);
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--teal-deep);
  color: var(--white) !important;
}

.nav-toggle {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1.25rem 1.25rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  color: var(--ink);
  padding: 0.85rem 0.4rem;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.mobile-nav a:last-child {
  border-bottom: 0;
  color: var(--teal-deep);
}

/* Offers bar */
.offers-bar {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 45;
  height: var(--offers-h);
  display: flex;
  align-items: center;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.offers-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.offers-text {
  margin: 0;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.offers-text.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.offers-text.is-leaving {
  opacity: 0;
  transform: translateY(-10px);
}

/* Hero */
.hero {
  position: relative;
  margin-top: calc(var(--header-h) + var(--offers-h));
  color: var(--ink);
  overflow: hidden;
  background: var(--white);
}

.hero-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.hero-content {
  position: relative;
  max-width: 34rem;
}

.hero-visual {
  margin: 0;
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  justify-self: stretch;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-partner {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1.25rem;
  padding: 0.55rem 0.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.hero-partner-logo {
  display: block;
  width: min(180px, 58vw);
  height: auto;
}

.hero-brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero-title {
  margin-bottom: 1rem;
  max-width: 14ch;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
}

.hero-lead {
  max-width: 34rem;
  color: var(--stone);
  font-size: 1.02rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-anim {
  animation: hero-fade 0.85s ease both;
}

.hero-partner.hero-anim {
  animation-delay: 0.02s;
}

.hero-brand.hero-anim {
  animation-delay: 0.12s;
}

.hero-title.hero-anim {
  animation-delay: 0.22s;
}

.hero-lead.hero-anim {
  animation-delay: 0.34s;
}

.hero-actions.hero-anim {
  animation-delay: 0.46s;
}

.hero-visual.hero-anim {
  animation-delay: 0.2s;
}

/* Why */
.why {
  background:
    linear-gradient(180deg, var(--chalk), var(--fog));
}

.why-grid {
  display: grid;
  gap: 2.5rem;
}

.why-aside {
  background:
    linear-gradient(160deg, rgba(149, 191, 71, 0.14), transparent 55%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.partner-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 1.25rem;
}

.partner-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.partner-points li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--stone);
}

.partner-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--shopify);
}

.why-copy h2 {
  max-width: 12ch;
}

/* Services */
.services {
  background:
    radial-gradient(700px 280px at 0% 0%, rgba(149, 191, 71, 0.1), transparent 60%),
    var(--mist);
}

.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.service-row {
  display: grid;
  gap: 0.75rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line-strong);
  transition: padding 0.3s ease;
}

.service-row h3 {
  color: var(--ink);
}

.service-row p {
  max-width: 48rem;
}

.service-row:hover {
  padding-left: 0.5rem;
}

/* Partner */
.partner {
  background: var(--ink);
  color: var(--white);
}

.partner p,
.partner .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.partner .eyebrow {
  color: var(--teal);
}

.partner h2 {
  color: var(--white);
}

.partner-grid {
  display: grid;
  gap: 2rem;
}

.partner-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.partner-panel h3 {
  margin-bottom: 1.25rem;
}

.partner-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.partner-panel li {
  padding-left: 1.25rem;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
}

.partner-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--shopify);
  border-radius: 1px;
}

/* Process */
.process {
  background:
    linear-gradient(180deg, var(--fog), var(--chalk));
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.process-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: start;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.process-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--shopify);
  letter-spacing: -0.04em;
  line-height: 1;
  padding-top: 0.15rem;
}

/* FAQ */
.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  gap: 2rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--fog);
  padding: 0 1.15rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  padding: 1.15rem 1.75rem 1.15rem 0;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: var(--shopify);
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding-bottom: 1.15rem;
}

/* Contact */
.contact {
  background:
    radial-gradient(800px 360px at 100% 0%, rgba(149, 191, 71, 0.16), transparent 55%),
    linear-gradient(180deg, var(--mist), #e8efdf);
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact-meta {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.contact-meta li span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--shopify-deep);
  margin-bottom: 0.25rem;
}

.contact-meta a {
  font-weight: 600;
  color: var(--ink);
}

.contact-meta a:hover {
  color: var(--teal-deep);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--chalk);
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 180, 166, 0.18);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.9rem;
}

.form-note.is-success {
  color: var(--shopify-deep);
}

.form-note.is-error {
  color: #9b2c2c;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form [data-form-submit]:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 2.5rem 0;
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-meta {
  display: grid;
  gap: 0.35rem;
}

.footer-updated {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

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

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-fade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-4%, 6%) scale(1.08);
  }
}

@media (min-width: 760px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .why-grid,
  .partner-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 3.5rem;
  }

  .service-row {
    grid-template-columns: minmax(220px, 0.8fr) 1.4fr;
    gap: 2rem;
    align-items: baseline;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2rem;
  }

  .footer-inner {
    grid-template-columns: 1.4fr 1fr auto;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 400px);
    gap: clamp(2rem, 4vw, 3.25rem);
    align-items: center;
  }

  .hero-content {
    max-width: none;
  }

  .hero-visual {
    max-width: none;
    justify-self: end;
    width: 100%;
    height: 340px;
    aspect-ratio: auto;
    max-height: none;
  }
}

@media (min-width: 980px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .process-steps li {
    grid-template-columns: 1fr;
    border: 0;
    padding: 0;
    gap: 1rem;
  }

  .process-steps li:last-child {
    border: 0;
  }
}

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

  .hero-visual {
    order: -1;
    max-width: none;
    max-height: 280px;
    aspect-ratio: 16 / 10;
    justify-self: stretch;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(1120px, calc(100% - 1.5rem));
  }

  .brand-tag {
    display: none;
  }

  .hero-title {
    max-width: none;
  }

  .hero-visual {
    max-height: 220px;
  }
}

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

  .reveal,
  .hero-anim,
  .hero-visual img,
  .btn {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .offers-text {
    transition: none !important;
  }
}
