:root {
  --teal: #087e79;
  --teal-deep: #056862;
  --teal-soft: #e8f5f3;
  --orange: #f47721;
  --orange-deep: #e7650d;
  --navy: #17345a;
  --body: #304968;
  --muted: #6f7d8d;
  --line: #e3e9ec;
  --paper: #ffffff;
  --soft: #fbfcfc;
  --beta: #082f63;
  --beta-deep: #062552;
  --max: 1060px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: .75rem 1rem;
  border-radius: .6rem;
  background: var(--navy);
  color: white;
}
.skip-link:focus { top: 1rem; }

.site-header {
  width: min(var(--max), 75%);
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand img { width: 330px; height: auto; object-fit: contain; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  white-space: nowrap;
}
.invitation-note {
  font-size: .95rem;
  font-weight: 650;
  color: var(--navy);
}
.sign-in {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .78rem 1.25rem;
  border-radius: .85rem;
  background: var(--teal-deep);
  color: #fff;
  text-decoration: none;
  font-weight: 750;
  box-shadow: 0 6px 16px rgb(5 104 98 / 14%);
}
.sign-in:hover { background: var(--teal); }

.hero {
  width: min(var(--max), 75%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(560px, 1.35fr);
  min-height: 430px;
  align-items: stretch;
}
.hero-copy {
  padding: 30px 34px 26px 0;
  align-self: center;
  z-index: 2;
}
.eyebrow {
  display: none;
}
.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 3.7vw, 3.5rem);
  line-height: .98;
  letter-spacing: -.045em;
  color: var(--navy);
}
.hero h1 span { color: var(--teal); }
.accent-rule {
  width: 64px;
  height: 4px;
  margin: 16px 0 14px;
  border-radius: 999px;
  background: var(--orange);
}
.hero-description {
  max-width: 33rem;
  margin: 0 0 16px;
  color: var(--body);
  font-size: 1rem;
  line-height: 1.72;
}
.contact-button {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .78rem 1.35rem;
  border: 1.5px solid var(--teal);
  border-radius: 999px;
  color: var(--teal-deep);
  font-weight: 760;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.contact-button:hover {
  background: var(--teal);
  color: #fff;
}
.privacy-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: .83rem;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 430px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 22%;
  z-index: 1;
  background: linear-gradient(90deg, #fff 0%, rgb(255 255 255 / 88%) 32%, transparent 100%);
  pointer-events: none;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 16%;
  background: linear-gradient(0deg, #fff 5%, transparent 100%);
  pointer-events: none;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.meaning {
  text-align: center;
  padding: 4px 24px 18px;
}
.meaning h2 {
  margin: 0 0 10px;
  font: 700 clamp(1.65rem, 2.3vw, 2.35rem)/1.2 Georgia, "Times New Roman", serif;
  color: var(--navy);
}
.brand-transition {
  position: relative;
  width: min(620px, 100%);
  height: 56px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1;
}
.phrase {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  white-space: nowrap;
  opacity: 0;
  animation: swap 8s ease-in-out infinite;
}
.phrase-domain { animation-delay: 4s; }
.teal { color: var(--teal); }
.orange { color: var(--orange); }
.ai-line {
  margin: 3px 0 0;
  color: var(--navy);
  font-size: .98rem;
}
@keyframes swap {
  0%, 8% { opacity: 0; transform: translateY(5px); }
  14%, 44% { opacity: 1; transform: translateY(0); }
  50%, 100% { opacity: 0; transform: translateY(-4px); }
}

.beta-card {
  width: min(920px, calc(100% - 52px));
  margin: 0 auto 24px;
  padding: 18px 24px 17px;
  border-radius: 18px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #061f44, #0a376e);
  border: 1px solid rgb(255 255 255 / 10%);
  box-shadow: 0 10px 24px rgb(8 47 99 / 16%);
}
.beta-badge {
  display: inline-block;
  padding: .16rem .72rem;
  border-radius: 999px;
  background: #f2b84b;
  color: #17345a;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .06em;
}
.beta-card h2 {
  margin: 7px 0 2px;
  font: 700 clamp(1.35rem, 2vw, 2rem)/1.18 Georgia, "Times New Roman", serif;
}
.beta-card > p {
  margin: 0;
  color: #f3f7fc;
  font-size: 1rem;
}
.beta-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  margin: 7px auto 5px;
  color: #f2b84b;
}
.beta-divider span {
  width: 125px;
  max-width: 28%;
  height: 1px;
  background: rgb(242 184 75 / 58%);
}
.beta-divider b {
  font-size: 1.15rem;
  font-weight: 500;
}
.beta-card .beta-contact {
  color: #fff;
  font-size: .96rem;
}
.beta-card .beta-contact a {
  color: #f2b84b;
  font-weight: 800;
  text-decoration: none;
  margin-left: .2rem;
}
.beta-card .beta-contact a:hover {
  color: #ffd47b;
}

.seasons {
  text-align: center;
  overflow: hidden;
}
.seasons h2 {
  margin: 0 20px 8px;
  font: 700 clamp(1.4rem, 2.1vw, 2rem)/1.25 Georgia, "Times New Roman", serif;
  color: var(--navy);
}
.small-rule {
  width: 54px;
  height: 3px;
  margin: 0 auto 0;
  border-radius: 999px;
  background: var(--orange);
  transform: translateY(18px);
  position: relative;
  z-index: 2;
}
.seasons img {
  width: 100%;
  height: clamp(190px, 22vw, 300px);
  margin-top: -8px;
  object-fit: cover;
  object-position: center;
}

.site-footer {
  width: min(var(--max), 75%);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.5rem;
  color: var(--muted);
  font-size: .86rem;
  text-align: center;
}
.site-footer nav {
  display: flex;
  gap: 2rem;
}
.site-footer a {
  color: var(--navy);
  text-decoration: none;
}
.site-footer a:hover { color: var(--teal); }
.site-footer p { margin: 0; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .phrase { animation: none; opacity: 0; transform: none; }
  .phrase-domain { opacity: 1; }
}

@media (max-width: 1050px) {
  .site-header { min-height: 94px; }
  .brand img { width: 275px; }
  .hero {
    grid-template-columns: .8fr 1.2fr;
    min-height: 500px;
  }
  .hero-copy { padding-top: 38px; }
  .hero h1 { font-size: clamp(3rem, 5.9vw, 4.3rem); }
  .hero-visual, .hero-visual img { min-height: 500px; }
}

@media (max-width: 780px) {
  .site-header {
    width: min(100% - 28px, var(--max));
    min-height: 82px;
  }
  .brand img { width: 200px; }
  .invitation-note { display: none; }
  .sign-in { padding: .62rem .85rem; font-size: .88rem; }

  .hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .hero-copy {
    padding: 34px 22px 24px;
    text-align: left;
  }
  .hero h1 {
    font-size: clamp(3rem, 13.5vw, 4.25rem);
    max-width: 7.5em;
  }
  .hero-description {
    font-size: 1rem;
    line-height: 1.62;
  }
  .hero-visual { min-height: 380px; order: 2; }
  .hero-visual img { min-height: 380px; height: 380px; }
  .hero-visual::before {
    width: 100%;
    height: 18%;
    inset: 0 0 auto;
    background: linear-gradient(180deg, #fff, transparent);
  }

  .meaning { padding: 18px 18px 28px; }
  .brand-transition {
    height: 62px;
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }
  .phrase { white-space: normal; line-height: 1.05; }
  .beta-card {
    width: calc(100% - 32px);
    margin-bottom: 28px;
    padding: 24px 18px;
  }
  .seasons img {
    height: 330px;
    object-position: 50% center;
  }
  .site-footer {
    width: calc(100% - 32px);
    padding: 22px 0 28px;
    flex-direction: column;
    min-height: 0;
  }
}

@media (max-width: 460px) {
  .brand img { width: 175px; }
  .sign-in span { display: none; }
  .hero-copy { padding-top: 24px; }
  .hero h1 { font-size: 3.25rem; }
  .contact-button { padding: .7rem 1.15rem; }
  .hero-visual, .hero-visual img { min-height: 320px; height: 320px; }
  .meaning h2 { font-size: 1.45rem; }
  .brand-transition { height: 58px; font-size: 2.45rem; }
  .seasons img { height: 290px; }
  .site-footer nav { gap: 1.2rem; }
}


/* Locked brand rule: saath.life must read as one continuous domain. */
.phrase-domain {
  letter-spacing: -0.015em;
}
.phrase-domain .teal,
.phrase-domain .orange {
  display: inline;
}
