:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --surface-2: #fbfbfd;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(0, 0, 0, 0.10);
  --blue: #0071e3;
  --blue-dark: #005bb5;
  --green: #18a957;
  --gold: #c58c21;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  background: rgba(245, 245, 247, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: saturate(180%) blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.brand img,
.footer img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.nav {
  display: none;
}

.nav-cta {
  border-radius: 999px;
  padding: 7px 14px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.section-pad {
  padding: 72px 20px;
}

.hero {
  display: grid;
  gap: 34px;
  min-height: calc(100svh - 54px);
  align-content: center;
}

.hero-copy {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 13vw, 88px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 9vw, 64px);
  line-height: 1.02;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.hero-text {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.primary-btn,
.secondary-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
}

.primary-btn {
  background: var(--blue);
  color: #fff;
}

.primary-btn:hover {
  background: var(--blue-dark);
}

.secondary-btn {
  color: var(--blue);
  background: rgba(0, 113, 227, 0.08);
}

.hero-showcase {
  width: min(100%, 880px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34%;
  gap: 10px;
  align-items: stretch;
}

.hero-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.showcase-main {
  aspect-ratio: 4 / 5;
}

.showcase-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-height: 0;
}

.showcase-stack img {
  min-height: 0;
}

.intro-band {
  padding: 60px 20px;
  text-align: center;
  background: #111;
  color: #fff;
}

.intro-band p {
  max-width: 760px;
  margin: 0 auto 12px;
  font-size: clamp(28px, 8vw, 56px);
  line-height: 1.04;
  font-weight: 900;
}

.intro-band strong {
  color: #c7c7cc;
  font-size: 19px;
}

.feature-grid {
  display: grid;
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}

.feature-grid article,
.plan-card,
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.feature-grid article {
  padding: 28px;
}

.feature-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
}

.feature-grid h2 {
  font-size: 30px;
}

.feature-grid p,
.copy-list,
.faq-list p,
.plan-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 550;
}

.gallery-section {
  padding: 74px 0;
  overflow: hidden;
  background: var(--surface-2);
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 34px;
  padding: 0 20px;
  text-align: center;
}

.photo-rail {
  width: 100%;
  overflow: hidden;
  padding: 0 0 12px;
}

.photo-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 0 20px;
  animation: photoLoop 46s linear infinite;
  will-change: transform;
}

.photo-rail:hover .photo-track {
  animation-play-state: paused;
}

.photo-track img {
  width: clamp(210px, 28vw, 285px);
  flex: 0 0 clamp(210px, 28vw, 285px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 22px;
  background: #ddd;
}

@keyframes photoLoop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .photo-track {
    animation: none;
    overflow-x: auto;
    width: auto;
  }
}

.style-section {
  max-width: 1180px;
  margin: 0 auto;
}

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

.style-grid article {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 24px;
  background: #111;
}

.style-grid img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.style-grid span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.copy-section {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.copy-list {
  display: grid;
  gap: 16px;
}

.copy-list ul {
  margin: 0;
  padding-left: 20px;
}

.copy-list li + li {
  margin-top: 10px;
}

.plans-section {
  background: #fff;
}

.plans-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.plan-card {
  position: relative;
  display: grid;
  gap: 24px;
  padding: 28px;
}

.plan-card.featured {
  background: #111;
  color: #fff;
  border-color: #111;
  box-shadow: var(--shadow);
}

.plan-card.featured .plan-copy,
.plan-card.featured li,
.plan-card.featured .plan-label {
  color: rgba(255, 255, 255, 0.74);
}

.badge {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-label {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.plan-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.faq-section {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}

.faq-list p {
  margin: 14px 0 0;
}

.footer {
  padding: 42px 20px 28px;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 16px;
}

.footer-brand p,
.footer-grid p,
.footer-note {
  margin: 0;
  line-height: 1.5;
}

.footer-grid {
  display: grid;
  gap: 22px;
}

.footer h2 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
}

.footer-grid > div,
.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 6px;
}

.footer a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 800;
}

.footer-note {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.legal-page {
  padding: 58px 20px 82px;
}

.legal-content {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.legal-content h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(38px, 9vw, 68px);
}

.legal-content h2 {
  margin: 30px 0 10px;
  font-size: 24px;
  line-height: 1.15;
}

.legal-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.legal-updated {
  margin-top: 34px;
  font-size: 14px;
  font-weight: 800;
}

.thanks-page {
  min-height: calc(100svh - 54px);
  display: grid;
  gap: 36px;
  align-content: center;
}

.thanks-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.thanks-content h1 {
  margin-bottom: 18px;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.thanks-preview {
  width: min(100%, 760px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 12px;
  align-items: end;
}

.thanks-preview img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.thanks-preview img:first-child {
  aspect-ratio: 4 / 5;
}

@media (min-width: 760px) {
  .topbar {
    padding: 0 34px;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #424245;
    font-size: 13px;
    font-weight: 700;
  }

  .nav a {
    text-decoration: none;
  }

  .section-pad {
    padding: 96px 34px;
  }

  .hero {
    gap: 56px;
  }

  .hero-showcase {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 18px;
  }

  .hero-showcase img,
  .photo-track img {
    border-radius: var(--radius-lg);
  }

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

  .style-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .copy-section {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }

  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .footer {
    padding: 54px 34px 34px;
  }

  .footer-grid {
    grid-template-columns: 1.05fr 1.25fr 1fr 0.9fr;
  }

  .legal-page {
    padding: 82px 34px 110px;
  }

  .legal-content {
    padding: 52px;
  }

  .thanks-page {
    gap: 54px;
  }

  .thanks-preview {
    gap: 18px;
  }
}

@media (min-width: 1120px) {
  .hero {
    padding-top: 86px;
  }

  .photo-track {
    gap: 18px;
  }
}
