:root {
  --bg: #f7f2ea;
  --paper: rgba(255, 251, 246, 0.8);
  --paper-strong: #fffdf9;
  --ink: #203029;
  --muted: #69776d;
  --line: rgba(32, 48, 41, 0.1);
  --accent: #6f907f;
  --accent-dark: #355445;
  --accent-soft: #d8e4da;
  --mist: #dde7ea;
  --peach: #e8d3c6;
  --sage: #e6ede2;
  --shadow: 0 18px 42px rgba(56, 73, 63, 0.08);
  --shadow-strong: 0 24px 52px rgba(56, 73, 63, 0.14);
}

html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(34rem 20rem at 8% 0%, rgba(216, 228, 218, 0.92), transparent 55%),
    radial-gradient(30rem 20rem at 92% 6%, rgba(221, 231, 234, 0.88), transparent 52%),
    radial-gradient(22rem 16rem at 20% 90%, rgba(232, 211, 198, 0.58), transparent 45%),
    linear-gradient(180deg, #fcfaf6 0%, #f5efe6 100%);
  line-height: 1.6;
  overflow-y: scroll;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.08s ease-out, transform 0.08s ease-out;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

body.page-ready {
  opacity: 1;
  transform: none;
}

body.page-exit {
  opacity: 0;
  transform: translateY(4px);
}

#page-content {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.14s ease, transform 0.14s ease;
}

#page-content.content-exit,
#page-content.content-enter {
  opacity: 0;
  transform: translateY(6px);
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 68px 0;
}

.head {
  text-align: center;
  margin-bottom: 30px;
}

.kicker {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  font-weight: 800;
}

.head h2 {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  color: var(--ink);
}

.head p {
  margin: 10px auto 0;
  max-width: 72ch;
  color: var(--muted);
}

.grid2,
.grid3,
.grid4 {
  display: grid;
  gap: 16px;
}

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

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

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

.card,
.product,
.bundle,
.panel,
.trust-item,
.hero-card,
.cta-premium {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 245, 0.72));
  border-radius: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.card {
  padding: 22px;
}

.card h3 {
  font-size: 1.7rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.card p {
  color: var(--muted);
  font-size: 0.96rem;
}

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

.actions.center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(53, 84, 69, 0.18);
  padding: 11px 16px;
  font-size: 0.74rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(53, 84, 69, 0.1);
}

.btn.dark {
  background: linear-gradient(135deg, #314f41 0%, #456756 100%);
  color: #f7f4ed;
  border-color: transparent;
}

.btn.ghost {
  background: rgba(216, 228, 218, 0.52);
  color: var(--accent-dark);
  border-color: rgba(111, 144, 127, 0.28);
}

.tag {
  display: inline-block;
  border: 1px solid rgba(111, 144, 127, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  font-weight: 800;
  padding: 7px 13px;
}

.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 760px);
  display: flex;
  align-items: center;
  color: var(--ink);
  overflow: hidden;
}

.hero-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  align-items: center;
  width: min(1140px, 92vw);
  margin: 0 auto;
  padding: 110px 0 84px;
}

.hero.hero-compact {
  min-height: 440px;
}

.hero-wrap.hero-wrap-compact {
  padding: 92px 0 56px;
}

.hero h1 {
  margin-top: 14px;
  font-size: clamp(2.3rem, 6.2vw, 4.9rem);
  line-height: 0.96;
}

.hero-copy {
  margin-top: 14px;
  max-width: 65ch;
  color: var(--muted);
  font-size: 1rem;
}

.hero-card {
  position: relative;
  padding: 24px;
  color: var(--ink);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(221, 231, 234, 0.65), transparent 32%),
    radial-gradient(circle at bottom left, rgba(216, 228, 218, 0.7), transparent 34%);
  pointer-events: none;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-card h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.hero-card p {
  color: var(--muted);
}

.note-top {
  margin-top: 10px;
}

.hero-signal {
  display: inline-block;
  margin-bottom: 10px;
  border: 1px solid rgba(111, 144, 127, 0.18);
  background: rgba(216, 228, 218, 0.54);
  color: var(--accent-dark);
  border-radius: 999px;
  font-size: 0.66rem;
  letter-spacing: 0.09rem;
  text-transform: uppercase;
  font-weight: 800;
  padding: 6px 10px;
}

.trust {
  margin-top: -40px;
  position: relative;
  z-index: 3;
}

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

.trust-item {
  padding: 14px;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 1rem;
  color: var(--ink);
}

.trust-item span {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.07rem;
  color: var(--muted);
}

.product {
  padding: 24px;
}

.product h3 {
  font-size: 2rem;
}

.sub {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04rem;
}

.copy {
  min-height: 60px;
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 10px;
}

.meta {
  color: rgba(105, 119, 109, 0.88);
  font-size: 0.86rem;
  margin-bottom: 10px;
}

.price {
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--accent-dark);
}

.mrp {
  margin-left: 8px;
  color: rgba(105, 119, 109, 0.7);
  text-decoration: line-through;
  font-size: 0.9rem;
}

.bundle {
  padding: 22px;
  position: relative;
}

.bundle h3 {
  font-size: 1.9rem;
  margin-bottom: 4px;
}

.bundle > p {
  color: var(--muted);
}

.bundle ul {
  list-style: none;
  display: grid;
  gap: 7px;
  margin: 10px 0 12px;
  padding: 0;
}

.bundle li {
  padding-left: 18px;
  position: relative;
  font-size: 0.92rem;
  color: var(--muted);
}

.bundle li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.bundle .save {
  margin-bottom: 6px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  color: var(--accent);
  font-weight: 800;
}

.bundle .now {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-dark);
}

.bundle .old {
  margin-left: 8px;
  text-decoration: line-through;
  color: rgba(105, 119, 109, 0.68);
}

.ribbon {
  position: absolute;
  right: 14px;
  top: -11px;
  background: linear-gradient(135deg, #6f907f 0%, #89a496 100%);
  color: #f8f5ef;
  font-size: 0.66rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(53, 84, 69, 0.16);
}

.timer-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.timer-box {
  background: rgba(255, 255, 255, 0.82);
  color: var(--accent-dark);
  border-radius: 14px;
  text-align: center;
  padding: 10px 4px;
  border: 1px solid rgba(111, 144, 127, 0.14);
}

.timer-num {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.timer-lab {
  font-size: 0.62rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}

.form-shell {
  width: min(980px, 92vw);
  margin: 0 auto;
  margin-top: -40px;
  position: relative;
  z-index: 4;
}

.panel {
  padding: 26px;
}

.panel h2 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.panel p {
  color: var(--muted);
  margin-bottom: 14px;
}

.field {
  margin-bottom: 12px;
}

.field label {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
  color: var(--accent-dark);
  margin-bottom: 5px;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(111, 144, 127, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(111, 144, 127, 0.42);
  box-shadow: 0 0 0 4px rgba(216, 228, 218, 0.7);
  background: #fff;
}

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

.status {
  margin-top: 10px;
  color: var(--muted);
  min-height: 18px;
  font-size: 0.86rem;
}

.footer {
  border-top: 1px solid rgba(32, 48, 41, 0.08);
  padding: 28px 0;
  text-align: center;
  color: rgba(73, 89, 79, 0.8);
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}

.cta-premium {
  padding: 34px 30px;
  text-align: center;
}

.cta-premium h2 {
  color: var(--ink);
}

.cta-premium p {
  color: var(--muted);
  margin-top: 8px;
  max-width: 67ch;
  margin-left: auto;
  margin-right: auto;
}

.nav[data-component="SEVRA-navbar"] {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 78px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(252, 248, 241, 0.84);
  border-bottom: 1px solid rgba(32, 48, 41, 0.08);
}

.nav[data-component="SEVRA-navbar"] .container {
  width: min(1140px, 92vw);
  margin: 0 auto;
  min-height: 78px;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.nav[data-component="SEVRA-navbar"] .logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.nav[data-component="SEVRA-navbar"] .logo img {
  display: block;
  height: 25px;
  width: auto;
}

.nav[data-component="SEVRA-navbar"] .links {
  position: relative;
  isolation: isolate;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.nav[data-component="SEVRA-navbar"] .links .nav-glass {
  position: absolute;
  left: 0;
  top: 4px;
  height: calc(100% - 8px);
  width: 0;
  border-radius: 999px;
  background: rgba(216, 228, 218, 0.95);
  border: 1px solid rgba(111, 144, 127, 0.24);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.24s cubic-bezier(0.22, 0.61, 0.36, 1), width 0.24s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.16s ease-out;
}

.nav[data-component="SEVRA-navbar"] .links a {
  text-decoration: none;
  color: var(--accent-dark);
  border: 1px solid transparent;
  padding: 8px 10px;
  font-size: 0.72rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  border-radius: 999px;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.nav[data-component="SEVRA-navbar"] .links a:hover {
  background: rgba(216, 228, 218, 0.74);
  color: var(--accent-dark);
}

.nav[data-component="SEVRA-navbar"] .links a[aria-current="page"] {
  background: transparent;
  color: var(--accent-dark);
}

.nav[data-component="SEVRA-navbar"] .nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(111, 144, 127, 0.26);
  background: rgba(216, 228, 218, 0.6);
  border-radius: 999px;
  width: 44px;
  height: 36px;
  padding: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav[data-component="SEVRA-navbar"] .nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-dark);
}

.startup-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background:
    radial-gradient(34rem 22rem at 50% 35%, rgba(216, 228, 218, 0.75), transparent 58%),
    linear-gradient(180deg, #fbf8f2 0%, #f4eee5 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.36s ease, visibility 0.36s ease;
}

.startup-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.startup-inner {
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--accent-dark);
  text-align: center;
}

.startup-logo {
  width: min(300px, 72vw);
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(53, 84, 69, 0.1));
  animation: startup-logo-in 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.startup-line {
  width: min(220px, 58vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111, 144, 127, 0.82), transparent);
  transform-origin: center;
  animation: startup-line-in 0.55s ease 0.12s both;
}

.startup-sub {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.42rem;
  text-transform: uppercase;
  color: rgba(53, 84, 69, 0.72);
  animation: startup-text-in 0.5s ease 0.18s both;
}

#page-content.hero-intro [data-intro] {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-reveal-up 0.52s ease forwards;
  animation-delay: var(--intro-delay, 0ms);
}

@keyframes startup-logo-in {
  from { opacity: 0; transform: translateY(10px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes startup-line-in {
  from { opacity: 0; transform: scaleX(0.2); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes startup-text-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-reveal-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
  .hero-wrap,
  .grid3,
  .grid4,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav[data-component="SEVRA-navbar"] .container {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    row-gap: 10px;
    column-gap: 10px;
  }

  .nav[data-component="SEVRA-navbar"] .logo img {
    height: 38px;
  }

  .nav[data-component="SEVRA-navbar"] .nav-toggle {
    display: inline-flex;
  }

  .nav[data-component="SEVRA-navbar"] .links {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(32, 48, 41, 0.08);
    border-radius: 16px;
    background: rgba(255, 252, 247, 0.96);
  }

  .nav[data-component="SEVRA-navbar"].menu-open .links {
    display: flex;
  }

  .nav[data-component="SEVRA-navbar"] .links a {
    white-space: normal;
    width: 100%;
    text-align: left;
    border-radius: 12px;
    padding: 10px 12px;
  }

  .nav[data-component="SEVRA-navbar"] .links a[aria-current="page"] {
    background: rgba(216, 228, 218, 0.9);
    border-color: rgba(111, 144, 127, 0.24);
  }

  .nav[data-component="SEVRA-navbar"] .links .nav-glass {
    display: none;
  }

  .hero-wrap,
  .grid2,
  .grid3,
  .grid4,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 540px;
  }

  .hero h1 {
    line-height: 0.98;
  }

  .copy {
    min-height: 0;
  }

  .timer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  .timer-box {
    min-height: 48px;
    padding: 8px 4px;
  }

  .timer-num {
    font-size: 0.92rem;
  }

  .timer-lab {
    font-size: 0.56rem;
    letter-spacing: 0.05rem;
  }

  #page-content > .hero {
    padding-top: 24px;
  }
}

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

  .startup-overlay,
  .startup-logo,
  .startup-line,
  .startup-sub,
  #page-content.hero-intro [data-intro] {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
