:root {
  --bg: #060606;
  --bg-soft: #101010;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f5f2;
  --muted: #b8b8b2;
  --muted-2: #8c8c85;
  --accent: #e8d7a8;
  --accent-2: #9f8660;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1260px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(232, 215, 168, 0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(159, 134, 96, 0.08), transparent 25%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.glow-one {
  width: 280px;
  height: 280px;
  background: rgba(232, 215, 168, 0.12);
  top: 6%;
  left: -5%;
}

.glow-two {
  width: 320px;
  height: 320px;
  background: rgba(114, 93, 72, 0.16);
  right: -8%;
  bottom: 14%;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 18px auto 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 16px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffffff);
  box-shadow: 0 0 24px rgba(232, 215, 168, 0.55);
}

.logo-text {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

main {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 110px);
  padding: 72px 0 54px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  align-items: center;
}

.eyebrow,
.section-tag {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  margin-bottom: 14px;
}

.hero-copy h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(3.5rem, 12vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.hero-copy h1 span {
  font-size: clamp(1rem, 3.6vw, 2rem);
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.hero-text,
.hero-subtext {
  max-width: 600px;
  color: var(--muted);
  line-height: 1.8;
}

.hero-text {
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.hero-subtext {
  font-size: 0.98rem;
  margin-bottom: 30px;
  color: var(--muted-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions a {
  min-width: 160px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), #c5ae82);
  color: #111;
  font-weight: 700;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 16px 36px rgba(232, 215, 168, 0.15);
}

.hero-actions a:hover {
  transform: translateY(-2px);
}

.hero-actions .ghost-btn {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.hero-visual {
  position: relative;
  min-height: 580px;
  display: grid;
  grid-template-columns: 1fr;
}

.hero-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  background: #0d0d0d;
}

.hero-card img {
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  min-height: 580px;
}

.hero-card-portrait {
  position: absolute;
  width: min(40%, 230px);
  height: 270px;
  right: -10px;
  bottom: -12px;
  transform: rotate(5deg);
}

.intro-strip {
  margin: 10px 0 4px;
  padding: 22px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: clamp(1rem, 2.8vw, 1.35rem);
  letter-spacing: 0.01em;
}

.section-shell {
  padding: 92px 0;
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 5.2vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 760px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.info-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  min-height: 200px;
  box-shadow: var(--shadow);
}

.info-card p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1rem;
}

.info-card strong {
  color: var(--text);
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.9;
}

.quote-card p {
  font-size: 1.12rem;
  color: var(--text);
  line-height: 1.5;
}

.visual-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  grid-auto-flow: dense;
}

.gallery-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  min-height: 320px;
  box-shadow: var(--shadow);
}

.gallery-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-card:hover img {
  transform: scale(1.035);
  filter: brightness(1.03);
}

.platform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.platform-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  min-height: 220px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--shadow);
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 215, 168, 0.3);
}

.platform-label {
  display: inline-block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  margin-bottom: 14px;
}

.platform-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.75rem;
  margin-bottom: 14px;
}

.platform-card p {
  color: var(--muted);
  line-height: 1.75;
  max-width: 34ch;
}

.platform-arrow {
  position: absolute;
  right: 24px;
  bottom: 22px;
  font-size: 1.5rem;
  color: var(--accent);
}

.featured-platform {
  background:
    radial-gradient(circle at top right, rgba(232, 215, 168, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
}

.site-footer {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 0 0 34px;
}

.site-footer p {
  color: var(--muted-2);
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* tablet */
@media (min-width: 720px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-card {
    grid-column: span 2;
  }

  .visual-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-tall {
    min-height: 620px;
    grid-row: span 2;
  }

  .gallery-wide {
    min-height: 300px;
    grid-column: span 1;
  }

  .gallery-feature {
    min-height: 420px;
    grid-column: span 2;
  }

  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-platform {
    grid-column: span 2;
  }
}

/* desktop */
@media (min-width: 1024px) {
  .hero {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 44px;
    padding-top: 78px;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr 0.9fr;
  }

  .quote-card {
    grid-column: auto;
  }

  .visual-gallery {
    grid-template-columns: 1.05fr 1fr 0.95fr;
    grid-template-rows: 260px 260px 260px;
    align-items: stretch;
  }

  .gallery-card {
    min-height: auto;
    height: 100%;
  }

  .gallery-tall {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }

  .gallery-wide {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
  }

  .gallery-feature {
    grid-column: 2 / 4;
    grid-row: 3 / 4;
  }

  .platform-grid {
    grid-template-columns: 1.15fr 1fr 1fr;
  }

  .featured-platform {
    grid-column: auto;
  }
}

/* mobile */
@media (max-width: 720px) {
  .site-header {
    border-radius: 24px;
    padding: 16px;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px 14px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-card-main {
    min-height: 460px;
  }

  .hero-card-portrait {
    width: 44%;
    height: 180px;
    right: 0;
    bottom: -6px;
  }

  .hero-actions a {
    width: 100%;
  }

  .gallery-card,
  .gallery-tall,
  .gallery-wide,
  .gallery-feature {
    min-height: 300px;
  }
}