/* ============================================================
   AIOS Landing  -  ms gartenreich
   Style matched to ms-gartenreich.de:
   warm off-white ground, olive ink, terracotta accent, sage
   panels, DM Sans Light display type, quiet editorial spacing.
   ============================================================ */

:root {
  --bg:        #f4f5f3;   /* their page ground */
  --bg-soft:   #ecede8;   /* one step deeper, warm */
  --bg-ink:    #20211f;   /* their ink, used for dark sections */
  --navy:      #20211f;   /* token name kept for compatibility = ink */
  --text:      #20211f;
  --text-soft: #4a4e4a;
  --text-mute: #6e726c;
  --amber:     #ad584b;   /* their terracotta accent */
  --amber-deep:#8f4439;
  --amber-soft:#f1e5e2;
  --blue:      #6b4a2f;   /* their link brown, used as secondary */
  --sage:      #c6c5b9;   /* their panel / image block */
  --line:      #e2dedb;
  --line-soft: #eae9e5;
  --font-sans: 'DM Sans', 'Segoe UI', Calibri, system-ui, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  --maxw: 1120px;
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ============================ NAV ============================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,245,243,0.88);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.brand-azuro {
  font-weight: 800; letter-spacing: -0.02em; color: var(--navy); font-size: 17px;
}
.brand-x { color: var(--text-mute); font-size: 15px; }
.brand-client {
  font-weight: 700; color: var(--navy); font-size: 16px; letter-spacing: -0.01em;
}
.brand-client::before {
  content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber); margin-right: 8px; vertical-align: middle;
}
.brand-logo { height: 26px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 26px; }
.nav-link {
  text-decoration: none; color: var(--text-soft); font-size: 14px; font-weight: 600;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--navy); }
.nav-cta {
  text-decoration: none; font-size: 14px; font-weight: 700;
  background: var(--navy); color: #f4f5f3; padding: 10px 18px; border-radius: 999px;
  transition: background 0.15s, transform 0.15s;
}
.nav-cta:hover { background: #3a3c37; transform: translateY(-1px); }
@media (max-width: 720px) {
  .nav-inner { padding: 13px 18px; }
  .nav-link { display: none; }
}

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: inherit; font-size: 15px; font-weight: 700; cursor: pointer;
  padding: 14px 26px; border-radius: 999px; text-decoration: none;
  border: 1.5px solid transparent; transition: all 0.16s; white-space: nowrap;
}
.btn-primary { background: var(--amber); color: var(--navy); border-color: var(--amber); }
.btn-primary:hover { background: var(--amber-deep); border-color: var(--amber-deep); transform: translateY(-2px); box-shadow: 0 10px 26px -10px rgba(143,68,57,0.38); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); background: var(--bg-soft); }

/* ============================ LAYOUT ============================ */
main { display: block; }
.section { padding: 92px 32px; }
.section-inner { max-width: var(--maxw); margin: 0 auto; }
.section-inner.narrow { max-width: 800px; }
.section-soft { background: var(--bg-soft); }
.section-eyebrow, .eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber-deep); margin: 0 0 18px;
}
.section h2 {
  font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.12; color: var(--navy); margin: 0 0 28px; max-width: 22ch;
}
.section h2 em { font-style: normal; color: var(--amber-deep); }
.big { font-size: clamp(17px, 2vw, 20px); color: var(--text-soft); line-height: 1.62; margin: 0 0 18px; }
.big strong { color: var(--navy); font-weight: 700; }

/* ============================ HERO ============================ */
.hero {
  padding: 96px 32px 84px;
  background:
    radial-gradient(ellipse 60% 70% at 88% -10%, rgba(173,88,75,0.13), transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 0%, rgba(198,197,185,0.34), transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero-inner { max-width: var(--maxw); margin: 0 auto; }
.hero h1 {
  font-size: clamp(38px, 6vw, 70px); font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.04; color: var(--navy); margin: 0 0 26px; max-width: 16ch;
}
.hero h1 em { font-style: normal; color: var(--amber-deep); }
.hero h1 .g {
  background: linear-gradient(100deg, var(--amber-deep), var(--amber));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { font-size: clamp(17px, 2vw, 20px); color: var(--text-soft); line-height: 1.6; max-width: 60ch; margin: 0 0 36px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-size: 14.5px; color: var(--text-mute); }
.hero-meta strong { color: var(--navy); font-weight: 700; }
.hero-meta .dot { color: var(--line); }

/* ============================ PITCH ============================ */
.section-pitch { padding-top: 88px; padding-bottom: 78px; }

/* ============================ GRIDS ============================ */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* use-case cards (their priorities) */
.uc {
  background: #f4f5f3; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.uc:hover { border-color: var(--amber); transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(32,33,31,0.20); }
.uc-tag {
  font-size: 13px; font-weight: 800; letter-spacing: 0.04em; color: var(--amber-deep);
  margin: 0 0 14px;
}
.uc h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin: 0 0 12px; line-height: 1.3; }
.uc p { margin: 0; color: var(--text-soft); font-size: 15.5px; line-height: 1.62; }
.uc p em { font-style: normal; color: var(--navy); font-weight: 600; }

/* feature tiles */
.feature {
  padding: 26px 24px; border-radius: var(--radius); background: #f4f5f3;
  border: 1px solid var(--line-soft);
}
.feature-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px; background: var(--amber-soft);
  color: var(--amber-deep); font-weight: 800; font-size: 15px; margin-bottom: 16px;
}
.feature h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin: 0 0 9px; }
.feature p { margin: 0; color: var(--text-soft); font-size: 14.8px; line-height: 1.6; }

/* ============================ DIFFERENCE ============================ */
.diff-list { display: flex; flex-direction: column; }
.diff-row {
  display: grid; grid-template-columns: 230px 1fr; gap: 30px;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.diff-row:last-child { border-bottom: 1px solid var(--line); }
.diff-label {
  font-weight: 800; color: var(--navy); font-size: 17px; letter-spacing: -0.01em;
  position: relative; padding-left: 20px;
}
.diff-label::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px;
  border-radius: 2px; background: var(--amber);
}
.diff-body p { margin: 0; color: var(--text-soft); font-size: 15.5px; line-height: 1.64; }
.diff-body strong { color: var(--navy); }
@media (max-width: 720px) { .diff-row { grid-template-columns: 1fr; gap: 10px; } }

/* ============================ USAGE ============================ */
.usage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 720px) { .usage-grid { grid-template-columns: 1fr; } }
.usage-step { padding-left: 4px; }
.usage-num { font-size: 28px; font-weight: 800; color: var(--amber); letter-spacing: -0.03em; margin-bottom: 8px; }
.usage-step h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 0 0 9px; }
.usage-step p { margin: 0; color: var(--text-soft); font-size: 15.5px; line-height: 1.62; }
.usage-step em { font-style: italic; color: var(--navy); }

/* ============================ DOCUMENTS ============================ */
.section-sky { background: var(--bg-ink); }
.section-sky .section-eyebrow { color: var(--amber); }
.section-sky h2 { color: #f4f5f3; }
.section-sky h2 .g { color: var(--amber); -webkit-text-fill-color: var(--amber); }
.section-sky .big { color: #c6c5b9; }
.docs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 36px 0 16px; }
@media (max-width: 720px) { .docs-grid { grid-template-columns: 1fr; } }
.doc-card {
  display: flex; align-items: center; gap: 18px; text-decoration: none;
  background: #2a2b28; border: 1px solid #3a3c37; border-radius: var(--radius);
  padding: 22px 22px; transition: border-color 0.18s, transform 0.18s, background 0.18s;
}
.doc-card:hover { border-color: var(--amber); transform: translateY(-3px); background: #32332f; }
.doc-icon {
  flex: none; width: 46px; height: 46px; border-radius: 11px; background: var(--amber);
  color: var(--navy); font-weight: 800; font-size: 12px; letter-spacing: 0.02em;
  display: flex; align-items: center; justify-content: center;
}
.doc-body { flex: 1; min-width: 0; }
.doc-title { margin: 0 0 4px; font-weight: 700; color: #f4f5f3; font-size: 16px; }
.doc-meta { margin: 0; color: #b9bdb6; font-size: 13.5px; line-height: 1.45; }
.doc-btn {
  flex: none; font-size: 13px; font-weight: 700; color: var(--amber);
  border: 1.5px solid #4a4e4a; border-radius: 999px; padding: 7px 15px;
}
.doc-card:hover .doc-btn { border-color: var(--amber); }
.docs-note { color: #979c92; font-size: 13px; margin: 14px 0 0; }
.docs-legal { color: #b9bdb6; font-size: 14px; line-height: 1.7; margin: 8px 0 0; }
.docs-legal a { color: var(--amber); text-decoration: none; font-weight: 600; }
.docs-legal a:hover { text-decoration: underline; }

/* ============================ OFFER ============================ */
.section-offer { background: var(--bg-soft); }
.offer-card {
  background: #f4f5f3; border: 1px solid var(--line); border-radius: 20px;
  padding: 40px 38px; margin-top: 8px;
}
.offer-step { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.offer-step:first-child { padding-top: 0; }
.offer-step-num {
  flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--navy);
  color: #f4f5f3; font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center;
}
.offer-step h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin: 4px 0 7px; }
.offer-step p { margin: 0; color: var(--text-soft); font-size: 15px; line-height: 1.6; }

.pricing { margin-top: 30px; padding-top: 30px; border-top: 2px solid var(--navy); }
.pricing-amount { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; margin-bottom: 22px; }
.pricing-currency { font-size: 26px; font-weight: 700; color: var(--navy); }
.pricing-number { font-size: 52px; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; line-height: 1; }
.pricing-period { font-size: 15px; color: var(--text-mute); font-weight: 600; }
.pricing-includes { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 11px; }
.pricing-includes li { position: relative; padding-left: 30px; color: var(--text-soft); font-size: 15.5px; }
.pricing-includes li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 19px; height: 19px;
  border-radius: 50%; background: var(--amber-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e3850a' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.pricing-note { color: var(--text-mute); font-size: 13.5px; line-height: 1.55; margin: 0; }

.offer-cta { margin-top: 34px; text-align: center; }
.offer-cta-prompt { font-size: 16px; color: var(--navy); font-weight: 600; margin: 0 0 16px; }
.contact-card {
  display: inline-flex; align-items: center; gap: 12px; background: #f4f5f3;
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 8px 8px 22px;
}
.contact-email { font-weight: 700; color: var(--navy); text-decoration: none; font-size: 15.5px; }
.contact-copy {
  font-family: inherit; cursor: pointer; border: none; background: var(--navy); color: #f4f5f3;
  font-weight: 700; font-size: 13px; padding: 9px 16px; border-radius: 999px; transition: background 0.15s;
}
.contact-copy:hover { background: #3a3c37; }
.contact-copy.copied { background: var(--amber); color: var(--navy); }
.offer-cta-note { color: var(--text-mute); font-size: 13.5px; margin: 16px 0 0; }

/* ============================ CLOSE ============================ */
.section-close { padding: 88px 32px 70px; }
.signature { margin: 30px 0 0; font-weight: 800; color: var(--navy); font-size: 17px; line-height: 1.5; }
.signature span { display: block; font-weight: 500; color: var(--text-mute); font-size: 14px; margin-top: 2px; }

.transcript-pointer { margin-top: 40px; }
.transcript-link {
  display: flex; align-items: center; gap: 16px; text-decoration: none;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 24px; transition: border-color 0.18s, transform 0.18s;
}
.transcript-link:hover { border-color: var(--amber); transform: translateY(-2px); }
.transcript-link-arrow { font-size: 22px; color: var(--amber-deep); font-weight: 700; }
.transcript-link-title { display: block; font-weight: 700; color: var(--navy); font-size: 16px; }
.transcript-link-meta { display: block; color: var(--text-mute); font-size: 13.5px; margin-top: 2px; }

/* ============================ FOOTER ============================ */
.footer { background: var(--bg-ink); color: #b9bdb6; padding: 52px 32px; }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
}
.footer .brand-azuro { color: #f4f5f3; font-size: 18px; }
.footer-mini { color: #a6aba2; font-size: 14px; max-width: 42ch; margin: 10px 0 0; line-height: 1.55; }
.footer-meta { text-align: right; font-size: 13.5px; color: #a6aba2; line-height: 1.7; }
.footer-meta a { color: var(--amber); text-decoration: none; }
@media (max-width: 640px) {
  .section { padding: 60px 20px; }
  .hero { padding: 64px 20px 56px; }
  .section-close { padding: 60px 20px 50px; }
  .footer-inner { flex-direction: column; }
  .footer-meta { text-align: left; }
  .offer-card { padding: 28px 22px; }
}

/* ============================================================
   ms gartenreich signature overrides
   Their site: DM Sans Light at display sizes with tight tracking,
   flat rectangles instead of pills, terracotta hairlines, sage
   panels, no gradients. Applied on top of the base sheet.
   ============================================================ */

body { font-weight: 300; }

/* Display type: light, tightly tracked, exactly like their hero wordmark */
.hero h1 {
  font-weight: 300;
  letter-spacing: -0.025em;
  max-width: 18ch;
}
.hero h1 em { color: var(--amber); font-weight: 300; }
.hero h1 .g {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: var(--navy);
  -webkit-text-fill-color: var(--navy);
  border-bottom: 2px solid var(--amber);
  padding-bottom: 2px;
}
.section h2 {
  font-weight: 300;
  letter-spacing: -0.02em;
  max-width: 24ch;
}
.section h2 em { color: var(--amber); font-weight: 300; }
.section h2 .g { color: var(--amber); -webkit-text-fill-color: var(--amber); }

/* Hero: flat ground with a single sage wash, no glow */
.hero {
  background:
    linear-gradient(180deg, rgba(198,197,185,0.28) 0%, rgba(198,197,185,0) 62%),
    var(--bg);
}

/* Eyebrows: their small-caps labels are quiet, not bold */
.section-eyebrow, .eyebrow {
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--amber);
}

/* Brand lockup: lowercase, light, tightly tracked */
.brand-azuro { font-weight: 500; letter-spacing: -0.01em; }
.brand-client { font-weight: 400; letter-spacing: 0; }

/* Buttons: bordered rectangles that invert to ink, like their CTAs */
.btn { border-radius: 2px; font-weight: 500; letter-spacing: 0.01em; }
.btn-primary {
  background: var(--amber); border-color: var(--amber); color: #f4f5f3;
}
.btn-primary:hover {
  background: var(--navy); border-color: var(--navy); color: #f4f5f3;
  transform: none; box-shadow: none;
}
.btn-ghost { border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #f4f5f3; }
.nav-cta { border-radius: 2px; font-weight: 500; }

/* Cards: hairline blocks, no lift, terracotta edge on hover */
.uc, .feature, .transcript-link, .doc-card, .offer-card, .contact-card {
  border-radius: 2px;
}
.uc:hover, .transcript-link:hover { transform: none; box-shadow: none; border-color: var(--amber); }
.doc-card:hover { transform: none; }
.uc h3, .feature h3 { font-weight: 500; }
.uc-tag { font-weight: 500; letter-spacing: 0.12em; }
.diff-label { font-weight: 500; }
.doc-title { font-weight: 500; }
.doc-icon { border-radius: 2px; font-weight: 500; color: #f4f5f3; }
.doc-btn { border-radius: 2px; font-weight: 500; }

/* Sage panel for the "how it works" band, their signature block colour */
.section-sage { background: var(--sage); }
.section-sage .section-eyebrow { color: #6b4a2f; }
.section-sage h2, .section-sage .usage-step h3 { color: var(--navy); }

/* Pricing figure: light and large, not heavy */
.pricing-number { font-weight: 300; letter-spacing: -0.03em; }
.pricing-currency { font-weight: 300; }
.pricing-period { font-weight: 400; }
.pricing { border-top: 1px solid var(--navy); }

/* Contact chip + signature */
.contact-card { border-radius: 2px; background: #f4f5f3; }
.contact-copy { border-radius: 2px; font-weight: 500; }
.contact-copy.copied { background: var(--amber); color: #f4f5f3; }
.signature { font-weight: 500; }
.hero-meta strong, .big strong, .diff-body strong { font-weight: 500; }
.feature-num { font-weight: 300; }
.usage-num { font-weight: 300; }
