@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Inter:wght@400;600;700;800;900&display=swap");

:root {
  --ink: #f7fbfc;
  --muted: #aab9bd;
  --soft: #dce8e6;
  --void: #061012;
  --deep: #091719;
  --panel: #0e1d1f;
  --panel-strong: #13282b;
  --paper: #f2f7f4;
  --line: rgba(255, 255, 255, 0.14);
  --teal: #10c8d3;
  --mint: #83f0be;
  --gold: #e0a64d;
  --coral: #ff7a64;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(6, 16, 18, 0.96), rgba(9, 23, 25, 0.98)),
    var(--void);
  color: var(--ink);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, #000, transparent 84%);
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(6, 16, 18, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--paper);
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(16, 200, 211, 0.32),
    0 14px 32px rgba(0, 0, 0, 0.35);
}

.brand-wordmark {
  font-family: "Cinzel Decorative", Georgia, serif;
  font-size: clamp(1rem, 1.5vw, 1.26rem);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2.2vw, 26px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

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

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  min-height: 88vh;
  padding: 130px clamp(20px, 6vw, 92px) 78px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(126deg, transparent 0 49%, rgba(16, 200, 211, 0.13) 49% 50%, transparent 50%),
    linear-gradient(142deg, transparent 0 57%, rgba(224, 166, 77, 0.11) 57% 58%, transparent 58%),
    linear-gradient(160deg, transparent 0 66%, rgba(255, 122, 100, 0.1) 66% 67%, transparent 67%);
  opacity: 0.78;
  z-index: -1;
}

.hero-content {
  width: min(780px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 11ch;
  color: var(--paper);
  font-family: "Cinzel Decorative", Georgia, serif;
  font-size: clamp(3rem, 7.6vw, 7.8rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  width: min(680px, 100%);
  margin: 28px 0 0;
  color: #d8e5e3;
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  line-height: 1.64;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 900;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button.primary {
  background: var(--teal);
  color: #021113;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--paper);
}

.hero-suite {
  display: grid;
  grid-template-columns: repeat(4, minmax(70px, 1fr));
  gap: clamp(12px, 1.7vw, 20px);
  align-items: center;
  justify-items: center;
}

.suite-icon {
  width: clamp(78px, 9vw, 126px);
  aspect-ratio: 1;
  border-radius: 24%;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.14);
}

.suite-icon.large {
  width: clamp(106px, 12vw, 168px);
  grid-column: span 2;
  grid-row: span 2;
}

.intro-strip {
  display: flex;
  justify-content: center;
  padding: 18px 20px;
  background: var(--paper);
  color: #13282b;
  text-align: center;
  font-weight: 850;
}

.intro-strip p {
  margin: 0;
}

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

.page-hero {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 66px;
}

.page-hero h1 {
  max-width: 12ch;
}

.apps-hero {
  padding-bottom: 42px;
}

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

h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
}

h3 {
  margin: 0;
  color: var(--paper);
  font-size: 1.55rem;
  line-height: 1.1;
}

.studio-panel,
.split,
.notice-band,
.app-policy-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(280px, 0.72fr);
  gap: 36px;
  align-items: start;
}

.studio-copy p,
.notice-band > p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.studio-copy p + p {
  margin-top: 18px;
}

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

.suite-card,
.project-card,
.contact-panel,
.app-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(19, 40, 43, 0.92), rgba(14, 29, 31, 0.96)),
    linear-gradient(135deg, rgba(16, 200, 211, 0.08), rgba(224, 166, 77, 0.06));
  box-shadow: var(--shadow);
}

.suite-card {
  display: grid;
  min-height: 300px;
  align-content: start;
  gap: 12px;
  padding: 22px;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.suite-card:hover,
.suite-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(16, 200, 211, 0.56);
  background:
    linear-gradient(180deg, rgba(22, 51, 54, 0.96), rgba(14, 29, 31, 0.98)),
    linear-gradient(135deg, rgba(16, 200, 211, 0.12), rgba(255, 122, 100, 0.08));
}

.suite-card.feature {
  background:
    linear-gradient(180deg, rgba(17, 54, 58, 0.98), rgba(14, 29, 31, 0.98)),
    linear-gradient(135deg, rgba(16, 200, 211, 0.16), rgba(224, 166, 77, 0.13));
}

.suite-card img,
.app-logo {
  width: 82px;
  height: 82px;
  border-radius: 22%;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.13);
}

.suite-card.feature img {
  width: 104px;
  height: 104px;
}

.suite-card span,
.project-label {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.suite-card strong {
  color: var(--paper);
  font-size: 1.3rem;
  line-height: 1.1;
}

.suite-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.app-policy-strip {
  padding-top: 22px;
}

.policy-links {
  display: grid;
  gap: 12px;
}

.policy-links a,
.app-actions a {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal);
  font-weight: 850;
  text-decoration: none;
}

.policy-links a {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.035);
}

.app-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.app-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 24px;
}

.app-card.working-title {
  background:
    linear-gradient(180deg, rgba(36, 35, 26, 0.92), rgba(14, 29, 31, 0.96)),
    linear-gradient(135deg, rgba(224, 166, 77, 0.13), rgba(16, 200, 211, 0.06));
}

.app-logo {
  margin-bottom: 20px;
}

.app-card p {
  color: var(--muted);
  line-height: 1.62;
}

.app-status {
  margin: 16px 0 0;
  color: #dce8e6;
  font-weight: 800;
}

.app-legal {
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.92rem;
}

.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.app-actions a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
}

.contact-panel {
  padding: 28px;
}

.contact-panel a {
  display: inline-block;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.notice-band {
  border-top: 1px solid var(--line);
}

.text-link {
  color: var(--teal);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.project-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
}

.project-card p:not(.project-label) {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.project-card a {
  width: fit-content;
  color: var(--teal);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-copy {
  max-width: 900px;
}

.legal-copy h2 {
  margin-bottom: 28px;
}

.legal-copy h3 {
  margin-top: 36px;
}

.legal-copy p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

.legal-copy a,
.site-footer a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer a + a {
  margin-left: 12px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(20px, 6vw, 92px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 1000px) {
  .hero,
  .studio-panel,
  .app-policy-strip,
  .notice-band,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-suite {
    width: min(620px, 100%);
  }

  .suite-grid,
  .app-detail-grid,
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 172px 20px 58px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3rem, 17vw, 4.9rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-suite {
    grid-template-columns: repeat(4, minmax(52px, 1fr));
  }

  .suite-icon {
    width: 64px;
  }

  .suite-icon.large {
    width: 92px;
  }

  .section {
    width: min(100% - 32px, 1180px);
    padding: 60px 0;
  }

  .page-hero {
    width: min(100% - 32px, 1040px);
    padding-top: 190px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .suite-grid,
  .app-detail-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .app-card {
    min-height: auto;
  }

  .brand-wordmark {
    font-size: 1rem;
  }
}
