:root {
  --bg: #f7f8f3;
  --ink: #151b19;
  --muted: #5f6965;
  --line: #d8ddd5;
  --panel: #ffffff;
  --green: #11664f;
  --green-dark: #0d4439;
  --amber: #bc7a1a;
  --blue: #405f8a;
  --rose: #b44968;
  --shadow: 0 18px 46px rgba(21, 27, 25, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px max(18px, calc((100vw - 1320px) / 2));
  background: rgba(247, 248, 243, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.12rem;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: var(--green);
  color: #fff;
}

nav {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

nav a {
  white-space: nowrap;
}

nav a,
.text-link,
.legal-links a {
  text-decoration: none;
}

nav a:hover,
.text-link:hover,
.legal-links a:hover {
  color: var(--green);
}

main {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 28px));
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 62px 0;
  border-bottom: 1px solid var(--line);
}

.media-wall {
  position: absolute;
  inset: 34px -40px 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  gap: 12px;
  opacity: 0.34;
  transform: rotate(-2deg);
  pointer-events: none;
}

.media-wall img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(0.92) contrast(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 248, 243, 0.98) 0%, rgba(247, 248, 243, 0.9) 38%, rgba(247, 248, 243, 0.62) 100%),
    linear-gradient(0deg, rgba(247, 248, 243, 1) 0%, rgba(247, 248, 243, 0) 34%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 10vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  max-width: 11ch;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-line {
  max-width: 54ch;
  margin-top: 20px;
  color: #2e3935;
  font-size: clamp(1.06rem, 1.8vw, 1.35rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.funding-meter {
  width: min(620px, 100%);
  display: grid;
  gap: 10px;
  margin-top: 22px;
  border: 1px solid rgba(17, 102, 79, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  padding: 14px;
  box-shadow: 0 14px 34px rgba(21, 27, 25, 0.10);
}

.funding-top,
.funding-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.funding-top span {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
}

.funding-top strong {
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.funding-track,
.phone-meter {
  overflow: hidden;
  height: 12px;
  border-radius: 999px;
  background: #dfe8e1;
}

.funding-track span,
.phone-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--amber));
}

.funding-bottom {
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 7px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 900;
}

.button.primary {
  background: var(--green);
  color: white;
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  background: #e7ede8;
  color: var(--ink);
}

.availability {
  max-width: 62ch;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.hero-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  min-height: 40px;
  border: 1px solid rgba(17, 102, 79, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0 12px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
  box-shadow: 0 8px 24px rgba(21, 27, 25, 0.08);
}

.hero-stats strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.collection-teasers article,
.app-panel,
.legal-document {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.app-panel span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section {
  margin-top: 56px;
}

.feature-board {
  padding-block: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.section-heading p {
  max-width: 50ch;
  color: var(--muted);
  line-height: 1.5;
}

.feature-cards,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.feature-cards article,
.plan-grid article {
  min-height: 216px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px;
  box-shadow: var(--shadow);
}

.feature-cards span,
.plan-grid span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-cards h3 {
  font-size: 1.45rem;
  line-height: 1.08;
}

.feature-cards p,
.plan-grid p {
  color: var(--muted);
  line-height: 1.48;
}

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

.plan-grid article {
  min-height: 178px;
}

.plan-grid strong {
  font-size: 1.8rem;
  line-height: 1.05;
}

.trust-band {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: start;
  padding-block: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-list {
  display: grid;
  gap: 10px;
}

.trust-list p {
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: #fff;
  padding: 14px 16px;
  color: var(--muted);
  line-height: 1.48;
  box-shadow: 0 8px 26px rgba(21, 27, 25, 0.08);
}

.trust-list strong {
  color: var(--ink);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: end;
  padding-block: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band h2 {
  max-width: 12ch;
}

.intro-band > p {
  color: #33403b;
  font-size: clamp(1.06rem, 1.8vw, 1.32rem);
  line-height: 1.55;
}

.app-preview {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding-block: 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.phone-frame {
  width: min(100%, 360px);
  margin-inline: auto;
  padding: 13px;
  border: 1px solid #17221f;
  border-radius: 30px;
  background: #111916;
  box-shadow: var(--shadow);
}

.phone-screen {
  min-height: 540px;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 18px;
  border-radius: 22px;
  background: #f7f8f3;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-weight: 900;
}

.phone-chip,
.guide-card span,
.guide-row span {
  border-radius: 999px;
  background: rgba(17, 102, 79, 0.12);
  color: var(--green);
  padding: 5px 8px;
  font-size: 0.72rem;
  font-weight: 900;
}

.phone-hero {
  min-height: 142px;
  display: grid;
  align-content: end;
  gap: 9px;
  padding: 14px;
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(17, 25, 22, 0.88), rgba(17, 25, 22, 0.18)),
    linear-gradient(135deg, #11664f, #405f8a 52%, #b44968);
  background-size: cover;
  background-position: center;
  color: white;
}

.studio-phone-hero {
  min-height: 164px;
}

.phone-hero strong,
.preview-copy strong {
  font-size: 1.45rem;
  line-height: 1.08;
}

.phone-hero p,
.guide-card p,
.guide-row p,
.preview-copy p {
  color: var(--muted);
  line-height: 1.45;
}

.phone-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.phone-meter {
  height: 10px;
  background: rgba(255, 255, 255, 0.26);
}

.guide-card,
.guide-row {
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.guide-row {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.guide-row span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.guide-row strong {
  display: block;
  color: var(--ink);
}

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

.preview-copy h2 {
  max-width: 13ch;
}

.feature-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  padding: 13px 14px;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: white;
  color: var(--muted);
  line-height: 1.45;
  box-shadow: 0 8px 26px rgba(21, 27, 25, 0.08);
}

.feature-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 1rem;
}

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

.collection-teasers article {
  overflow: hidden;
  border-top: 5px solid var(--accent);
}

.release-board {
  padding-block: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.release-grid article {
  min-height: 178px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.release-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.release-grid strong {
  font-size: 2rem;
  line-height: 1.05;
}

.release-grid p {
  color: var(--muted);
  line-height: 1.45;
}

.collection-teasers img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  background: #ece7d8;
}

.role-grid article {
  min-height: 210px;
  padding: 16px 0 0;
}

.role-price {
  display: grid;
  place-items: center;
  min-height: 96px;
  margin: 0 14px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent), white 8%), color-mix(in srgb, var(--accent), black 22%));
  color: white;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 950;
}

.collection-teasers h3,
.collection-teasers p {
  padding-inline: 14px;
}

.collection-teasers h3 {
  padding-top: 14px;
  font-size: 1.05rem;
}

.collection-teasers p {
  padding-top: 7px;
  padding-bottom: 16px;
  color: var(--muted);
  line-height: 1.42;
}

.ios-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 18px;
  align-items: stretch;
  margin-top: 60px;
  padding-block: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ios-section > div:first-child {
  display: grid;
  align-content: center;
  gap: 16px;
}

.ios-section p:not(.eyebrow) {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.55;
}

.app-panel {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 22px;
}

.app-panel strong {
  font-size: 2rem;
  line-height: 1.05;
}

.text-link {
  color: var(--green);
  font-weight: 900;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 54px;
}

.legal-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  padding: 0 14px;
  font-weight: 800;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px max(18px, calc((100vw - 1320px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.page-main {
  width: min(920px, calc(100% - 32px));
  padding: 54px 0 70px;
}

.page-title {
  margin-bottom: 20px;
}

.page-title h1 {
  font-size: clamp(3.2rem, 9vw, 6.6rem);
}

.page-title p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.legal-document {
  padding: 28px;
}

.legal-document h2 {
  max-width: none;
  margin-top: 28px;
  font-size: 1.5rem;
  line-height: 1.15;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  line-height: 1.62;
}

.legal-document a {
  color: var(--green);
  font-weight: 800;
}

.support-form {
  display: grid;
  gap: 14px;
  margin: 18px 0 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f8f3;
}

.support-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 650;
  padding: 12px 13px;
}

.support-form textarea {
  resize: vertical;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(17, 102, 79, 0.14);
}

.support-form button {
  border: 0;
  cursor: pointer;
}

.support-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  min-height: 1.4em;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  line-height: 1.62;
}

.legal-document p {
  margin-top: 10px;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

@media (max-width: 920px) {
  .site-header,
  .section-heading,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .collection-teasers,
  .release-grid,
  .feature-cards,
  .plan-grid,
  .intro-band,
  .app-preview,
  .trust-band,
  .ios-section {
    grid-template-columns: 1fr 1fr;
  }

  .ios-section > div:first-child,
  .preview-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  main {
    width: min(100% - 22px, 1320px);
  }

  .hero {
    min-height: 690px;
    padding-top: 44px;
  }

  .media-wall {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    opacity: 0.22;
  }

  h1 {
    font-size: 3rem;
    max-width: 11ch;
  }

  h2 {
    max-width: 100%;
  }

  .collection-teasers,
  .release-grid,
  .feature-cards,
  .plan-grid,
  .intro-band,
  .app-preview,
  .trust-band,
  .ios-section {
    grid-template-columns: 1fr;
  }

  .phone-screen {
    min-height: 500px;
  }

  .feature-cards article,
  .plan-grid article,
  .release-grid article {
    min-height: 0;
  }

  .legal-document {
    padding: 20px;
  }
}
