:root {
  --bg: #ffffff;
  --text: #0d1b2a;
  --muted: #5b6b7a;
  --line: #dbeef8;
  --ice: #dff6ff;
  --ice-strong: #7ccff2;
  --ice-deep: #1c89bd;
  --panel: #f7fcff;
  --shadow: 0 24px 70px rgba(28, 137, 189, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(223, 246, 255, 0.78) 0, rgba(255, 255, 255, 0) 420px),
    var(--bg);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(219, 238, 248, 0.72);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ice-deep);
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.9rem;
}

.nav-links {
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ice-deep);
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 58px;
  align-items: center;
  min-height: calc(100vh - 78px);
  padding-top: 66px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--ice-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(4.4rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.2vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 6px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.subtitle {
  margin-bottom: 20px;
  color: var(--ice-deep);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.15;
}

.hero-text,
.intro-section p,
.section-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-text {
  max-width: 450px;
  margin-bottom: 34px;
}

.hero-actions,
.contact-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--ice-deep);
  box-shadow: 0 14px 34px rgba(28, 137, 189, 0.2);
}

.button-secondary {
  color: var(--ice-deep);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--ice-strong);
  background: var(--panel);
}

.icon-button {
  display: inline-grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--text);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(28, 137, 189, 0.1);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  color: var(--ice-deep);
  background: linear-gradient(145deg, #ffffff, var(--panel));
  border-color: var(--ice-strong);
  box-shadow: 0 20px 46px rgba(28, 137, 189, 0.18);
  transform: translateY(-3px);
}

.icon-button svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: min(720px, 74vh);
  object-fit: cover;
}

.hero-photo figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 4px;
  min-width: 190px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(219, 238, 248, 0.9);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.hero-photo figcaption span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-photo figcaption strong {
  color: var(--text);
  font-size: 1.05rem;
}

.intro-section {
  max-width: 900px;
  padding-bottom: 56px;
  border-top: 1px solid var(--line);
}

.intro-section p {
  max-width: 620px;
  margin-bottom: 0;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 46px;
  align-items: center;
  padding-top: 0;
  border-top: 1px solid var(--line);
}

.founder-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(28, 137, 189, 0.08);
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.founder-copy {
  max-width: 720px;
}

.founder-copy h2 {
  max-width: 680px;
}

.founder-copy p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.magazine-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(220px, 1fr);
  gap: 36px;
  align-items: end;
  padding-top: 0;
}

.feature-copy {
  padding: 42px;
  background: linear-gradient(145deg, var(--panel), #ffffff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-copy h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.feature-line {
  height: 1px;
  margin-bottom: 48px;
  background: linear-gradient(90deg, var(--ice-strong), rgba(219, 238, 248, 0));
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 14px;
}

.section-subtitle {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.04rem;
}

.image-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.image-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(28, 137, 189, 0.08);
  isolation: isolate;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.image-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.02) 35%, rgba(13, 27, 42, 0.68) 100%),
    linear-gradient(90deg, rgba(223, 246, 255, 0.2), rgba(255, 255, 255, 0));
  content: "";
}

.image-card:hover img {
  transform: scale(1.035);
}

.image-card-content {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  color: #ffffff;
}

.image-card-content span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--ice);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.image-card-content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: 54px;
  border-top: 1px solid var(--line);
}

.section-copy {
  max-width: 820px;
}

.soon-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.soon-list li {
  padding: 18px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 700;
}

.quote-section {
  padding-top: 16px;
  padding-bottom: 74px;
}

.quote-section blockquote {
  margin: 0;
  max-width: 820px;
  padding: 26px 0 0;
  color: var(--text);
  background: transparent;
  border-top: 1px solid var(--line);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: var(--radius);
  box-shadow: none;
  font-size: clamp(1.15rem, 2.1vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.contact-section {
  padding: 76px;
  background: linear-gradient(145deg, #f7fcff, #ffffff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-section p {
  max-width: 640px;
  margin-bottom: 28px;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 28px;
  color: var(--muted);
  font-size: 0.94rem;
  text-align: center;
}

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

  .hero-photo img {
    height: min(620px, 72vh);
  }

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

  .image-card:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .magazine-feature,
  .founder-section,
  .split-section,
  .section-heading {
    display: block;
  }

  .founder-photo {
    margin-bottom: 30px;
  }

  .feature-line {
    display: none;
  }

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

@media (max-width: 680px) {
  .site-header {
    width: min(100% - 28px, 1180px);
    align-items: flex-start;
    padding: 14px 0;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 14px;
    font-size: 0.88rem;
  }

  .section-shell,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .section-shell {
    padding: 70px 0;
  }

  .hero {
    gap: 34px;
    min-height: auto;
    padding-top: 56px;
  }

  h1 {
    font-size: clamp(3.5rem, 22vw, 5.7rem);
  }

  h2 {
    font-size: clamp(2rem, 13vw, 3.15rem);
  }

  .hero-text,
  .intro-section p,
  .founder-copy p:last-child,
  .section-copy p,
  .contact-section p {
    font-size: 1rem;
  }

  .hero-photo img {
    height: 440px;
  }

  .hero-photo figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .feature-copy,
  .contact-section {
    padding: 30px 22px;
  }

  .quote-section {
    padding-top: 0;
    padding-bottom: 58px;
  }

  .quote-section blockquote {
    padding-top: 22px;
  }

  .image-card-grid,
  .soon-list {
    grid-template-columns: 1fr;
  }

  .image-card:first-child {
    grid-column: auto;
  }

  .image-card,
  .image-card img {
    min-height: 430px;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
