:root {
  --cream: #f6efe6;
  --mist: #e9f1f7;
  --white: #ffffff;
  --ink: #10243a;
  --ink-soft: #526579;
  --blue: #2e7fd0;
  --blue-deep: #143f6d;
  --sky: #8fc9f7;
  --green: #9bd76e;
  --line: rgba(16, 36, 58, 0.12);
  --shadow: 0 30px 90px rgba(14, 39, 66, 0.16);
  --container: min(1180px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  background: var(--white);
}

body::before {
  content: none;
}

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

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem max(1rem, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(16, 36, 58, 0.08);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
}

.brand-logo {
  width: min(154px, 42vw);
  max-height: 58px;
  object-fit: contain;
}

.top-menu {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--blue-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.top-menu a {
  position: relative;
  padding: 0.5rem 0;
}

.top-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.top-menu a:hover::after,
.top-menu a:focus-visible::after,
.top-menu a.is-active::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 18px 42px rgba(46, 127, 208, 0.28);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #071827;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 18, 31, 0.92), rgba(5, 18, 31, 0.6) 48%, rgba(5, 18, 31, 0.2)),
    linear-gradient(180deg, rgba(5, 18, 31, 0.18), rgba(5, 18, 31, 0.86)),
    url("./assets/lifestyle-hero.jpg") center / cover;
  transform: scale(1.03);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: 8rem 0 7rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}

.eyebrow,
.mini-label {
  margin: 0 0 0.85rem;
  color: var(--sky);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.15rem;
  font-size: clamp(4rem, 10vw, 8.6rem);
  line-height: 0.82;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.92;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.18;
}

.hero-lede {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.65;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.hero-proof {
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.proof-stat {
  display: grid;
  gap: 0.4rem;
}

.proof-stat strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.25rem;
  line-height: 1;
}

.proof-stat span,
.hero-proof p {
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
  line-height: 1.65;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.6fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
  color: var(--ink-soft);
  line-height: 1.75;
}

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

.feature-card,
.product-card,
.form-panel {
  border: 1px solid rgba(46, 127, 208, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 55px rgba(14, 39, 66, 0.08);
}

.feature-card {
  padding: 1.25rem;
  min-height: 245px;
}

.feature-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 2rem;
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(46, 127, 208, 0.1);
  font-weight: 800;
}

.feature-card p,
.product-card p,
.register-copy p,
.fine-print {
  color: var(--ink-soft);
  line-height: 1.65;
}

.product-card {
  display: grid;
  min-height: 100%;
  padding: 1rem;
  overflow: hidden;
}

.product-visual {
  display: grid;
  place-items: center;
  min-height: 250px;
  margin-bottom: 1rem;
  border-radius: 8px;
  background:
    radial-gradient(circle, rgba(142, 198, 245, 0.24), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(233, 241, 247, 0.8));
}

.product-visual img {
  max-height: 230px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(16, 36, 58, 0.18));
}

.register {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.72fr);
  gap: 1rem;
  align-items: stretch;
}

.register-copy {
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid rgba(142, 198, 245, 0.22);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(142, 198, 245, 0.22), transparent 18rem),
    linear-gradient(160deg, rgba(20, 63, 109, 0.98), rgba(6, 22, 38, 0.98));
  box-shadow: 0 24px 70px rgba(20, 63, 109, 0.18);
}

.register-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.register-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.register-list li {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.form-panel {
  background:
    radial-gradient(circle at top right, rgba(46, 127, 208, 0.08), transparent 16rem),
    rgba(255, 255, 255, 0.98);
}

.form-panel {
  padding: clamp(1.1rem, 3vw, 1.6rem);
}

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

.form-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding: 0.35rem;
  border: 1px solid rgba(46, 127, 208, 0.14);
  border-radius: 999px;
  background: rgba(46, 127, 208, 0.06);
}

.toggle-button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.toggle-button.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 14px 32px rgba(46, 127, 208, 0.24);
}

.form-intro {
  margin-bottom: 1rem;
}

.form-intro h3 {
  margin-bottom: 0.35rem;
}

.form-intro p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

[hidden] {
  display: none !important;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.9rem 0.95rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  font: inherit;
  outline: none;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(46, 127, 208, 0.6);
  box-shadow: 0 0 0 4px rgba(46, 127, 208, 0.12);
}

.form-status {
  margin: 1rem 0 0;
  color: var(--blue-deep);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

.site-footer {
  width: var(--container);
  margin: 0 auto 1rem;
  padding: 1.2rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  background: #091a2b;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-row img {
  width: 140px;
  max-height: 58px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 180ms;
}
.registerNow p {
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 18px;
}
.registerNow .registerNowtext {
	background: rgb(255, 255, 255);
	padding: 10px;
	text-transform: uppercase;
	font-weight: 600;
	  font-size: clamp(1.1250rem, 0.2074rem + 2.5532vw, 2.1000rem);
	line-height: 1.3 !important;
	color: #133150;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
}

.registerNowtext span {
	display: block;
	font-size: clamp(1.0rem, 0.2074rem + 2.5532vw, 1.84rem);
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .hero-inner,
  .section-heading,
  .register {
    grid-template-columns: 1fr;
  }

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

  .hero-inner {
    padding-top: 7rem;
  }

  .hero-proof {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 0.7rem 1rem;
  }

  .top-menu {
    gap: 0.45rem;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.3rem, 18vw, 4.7rem);
  }

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

  .section {
    padding: 4rem 0;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .registerNow p{
        font-size: 16px;
  }
}
