:root {
  --green: #0f4f3f;
  --green-dark: #06342c;
  --green-soft: #eaf4ec;
  --gold: #d7a640;
  --gold-soft: #fff3cf;
  --ink: #10221d;
  --muted: #596b63;
  --paper: #f5f8f1;
  --white: #ffffff;
  --line: rgba(16, 34, 29, 0.14);
  --shadow: 0 20px 48px rgba(14, 31, 25, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green-dark);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 32, 29, 0.86), rgba(4, 32, 29, 0.46), rgba(4, 32, 29, 0.12)),
    linear-gradient(180deg, rgba(4, 32, 29, 0.10), rgba(4, 32, 29, 0.78));
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px;
}

.topbar a {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.74fr);
  align-items: center;
  gap: 44px;
  max-width: 1240px;
  min-height: 760px;
  margin: 0 auto;
  padding: 28px 24px 84px;
}

.hero-content {
  max-width: 760px;
}

.logo {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 18px 0 10px;
  color: #a9d684;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-title {
  max-width: 720px;
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(54px, 8vw, 104px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.34);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5.8vw, 74px);
  line-height: 0.96;
}

.hero-title {
  color: #a9d684;
}

h2 {
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 24px;
}

.lead,
.premium-lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.hero-offer {
  display: inline-flex;
  margin: 4px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff3cf;
  font-size: 16px;
  font-weight: 950;
  backdrop-filter: blur(10px);
}

.hero-actions,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.store-badge {
  display: inline-grid;
  grid-template-columns: 34px auto;
  gap: 10px;
  align-items: center;
  min-width: 178px;
  min-height: 58px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: #0b1210;
  color: #ffffff;
  line-height: 1.08;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.store-badge small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
}

.store-badge span:last-child {
  font-size: 19px;
  font-weight: 950;
}

.store-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 20px;
  font-weight: 950;
}

.store-badge.android .store-icon {
  color: #a9d684;
}

.store-badge.apple .store-icon {
  color: #ffffff;
}

.store-badges.light .store-badge {
  border-color: var(--line);
  background: #0b1210;
}

.button,
.legal-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.primary {
  background: var(--gold);
  color: #142018;
}

.store {
  background: #ffffff;
  color: var(--green-dark);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.secondary,
.legal-links a {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green);
}

.hero-phone,
.phone-shot,
.phone-stack img {
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-phone {
  justify-self: end;
  max-width: 420px;
  transform: rotate(1.5deg);
}

.hero-phone img,
.phone-shot img,
.phone-stack img {
  display: block;
  width: 100%;
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 24px;
}

.section-copy p {
  color: var(--muted);
  font-size: 18px;
}

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

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

.platform-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 38px max(24px, calc((100vw - 1180px) / 2));
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.platform-strip h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3vw, 40px);
}

.platform-strip p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.commercial-band {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 28px;
  align-items: start;
  padding: 72px max(24px, calc((100vw - 1180px) / 2));
  background: #ffffff;
}

.commercial-copy h2 {
  margin-bottom: 0;
}

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

.benefit-item {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f9fbf7;
}

.benefit-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 20px;
}

.benefit-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.phone-shot {
  margin: 0;
}

.phone-shot figcaption {
  padding: 12px 14px 4px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.situation {
  align-items: center;
  background: #eef6ef;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
}

.phone-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.phone-stack img:nth-child(2) {
  margin-top: 42px;
}

.check-list {
  padding-left: 20px;
  color: var(--green-dark);
  font-weight: 750;
}

.content-preview {
  grid-template-columns: 0.68fr 1.32fr;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.tools {
  grid-template-columns: 0.72fr 1.28fr;
}

.tool-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: start;
}

.tool-strip img {
  display: block;
  width: 100%;
  border: 10px solid #ffffff;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.premium-detail {
  padding: 96px 24px;
  background:
    linear-gradient(180deg, #fffdf5, #ffffff 36%, #eef6ef);
}

.premium-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 960px;
  margin: 0 auto 22px;
}

.premium-menu a {
  padding: 11px 15px;
  border: 1px solid rgba(15, 79, 63, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--green-dark);
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(14, 31, 25, 0.08);
}

.premium-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1040px;
  margin: 0 auto 38px;
}

.premium-stats span {
  display: grid;
  gap: 2px;
  min-height: 92px;
  align-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  color: var(--muted);
  font-weight: 850;
  text-align: center;
  box-shadow: 0 14px 28px rgba(14, 31, 25, 0.08);
}

.premium-stats strong {
  color: var(--green-dark);
  font-size: 24px;
  line-height: 1;
}

.premium-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: center;
  max-width: 1180px;
  margin: 26px auto 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.premium-showcase.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.premium-showcase.reverse .premium-showcase-copy {
  order: 2;
}

.premium-showcase h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.premium-showcase-copy p {
  color: var(--muted);
  font-size: 18px;
}

.demo-screens {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.premium-detail .phone-shot img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
}

.demo-screens .phone-shot:nth-child(2) {
  margin-top: 42px;
}

.tri-screens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.tri-screens .phone-shot:nth-child(2) {
  margin-top: 34px;
}

.tri-screens .phone-shot:nth-child(3) {
  margin-top: 68px;
}

.solo-demo {
  max-width: 340px;
  justify-self: center;
}

.solo-demo .phone-shot {
  margin-top: 0;
}

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

.topic-visual-grid img {
  display: block;
  width: 100%;
  border: 10px solid #ffffff;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.use-cases {
  padding: 82px 24px;
  background: #eef6ef;
}

.case-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.case-list span {
  padding: 12px 16px;
  border: 1px solid rgba(15, 79, 63, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--green-dark);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(14, 31, 25, 0.08);
}

.feature-section {
  padding: 92px 24px;
  background: #ffffff;
}

.comparison-table {
  display: grid;
  max-width: 1040px;
  margin: 0 auto 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px 160px;
  gap: 12px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row.head {
  background: var(--green-dark);
  color: var(--white);
  font-weight: 950;
}

.comparison-row span:first-child {
  color: var(--ink);
  font-weight: 850;
}

.comparison-row.head span:first-child {
  color: var(--white);
}

.comparison-row strong {
  color: var(--green);
  font-weight: 950;
  text-align: center;
}

.comparison-row.premium-only {
  background: #fffaf0;
}

.feature-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.feature-card.free {
  background: linear-gradient(145deg, #ffffff, #eff8f1);
}

.feature-card.premium-list {
  background:
    radial-gradient(circle at 88% 10%, rgba(215, 166, 64, 0.22), transparent 30%),
    linear-gradient(145deg, #fffdf5, #fff3cf);
}

.feature-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink);
}

.feature-card li::marker {
  color: var(--green);
}

.premium {
  padding: 96px 24px;
  background: linear-gradient(135deg, #06342c, #0c5542 58%, #17372f);
}

.premium-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 10%, rgba(215, 166, 64, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 237, 0.96));
  box-shadow: var(--shadow);
}

.gold {
  color: #b07d1d;
}

.price-box {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 18px 24px;
  border-radius: 22px;
  background: #123f35;
  color: var(--white);
}

.price-box strong {
  font-size: 48px;
  line-height: 1;
}

.price-box span {
  color: #d4e7da;
  font-weight: 900;
  text-transform: uppercase;
}

.premium .premium-lead {
  color: var(--muted);
}

.premium-stores {
  margin-top: 18px;
}

.donation {
  padding: 76px 24px;
  background: #fffaf0;
}

.donation-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid rgba(215, 166, 64, 0.38);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.donation-copy h2 {
  margin-bottom: 12px;
}

.donation-copy p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.donation-button {
  min-width: 230px;
  background: #ffc439;
  color: #142018;
  box-shadow: 0 12px 28px rgba(176, 125, 29, 0.18);
}

.payment-actions {
  max-width: 260px;
}

.payment-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.feedback-section {
  padding: 76px 24px;
  background: #eef6ef;
}

.feedback-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid rgba(15, 79, 63, 0.18);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.feedback-copy h2 {
  margin-bottom: 12px;
}

.feedback-copy p:last-child {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.feedback-button {
  min-width: 210px;
  text-align: center;
}

.apple-page {
  background: #f7faf5;
}

.apple-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 52, 44, 0.96), rgba(15, 79, 63, 0.88)),
    url("assets/hero.png") center / cover;
}

.apple-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 42px;
  align-items: center;
  max-width: 1180px;
  min-height: 640px;
  margin: 0 auto;
  padding: 58px 24px 88px;
}

.apple-copy h1 {
  max-width: 820px;
}

.apple-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.apple-status span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff3cf;
  font-weight: 950;
}

.apple-preview {
  justify-self: end;
  max-width: 330px;
}

.apple-waitlist,
.apple-info {
  padding: 92px 24px;
}

.waitlist-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.waitlist-copy p {
  color: var(--muted);
  font-size: 18px;
}

.newsletter-form {
  display: grid;
  gap: 12px;
}

.newsletter-form label {
  color: var(--green-dark);
  font-weight: 900;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f9fbf7;
  color: var(--ink);
  font: inherit;
}

.newsletter-form input:focus {
  outline: 3px solid rgba(215, 166, 64, 0.24);
  border-color: var(--gold);
}

.consent-line {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 750;
}

.consent-line input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-result {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 36px 18px;
}

.form-result-card {
  width: min(620px, 100%);
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
  text-align: center;
}

.form-result-card h1 {
  margin: 8px 0 12px;
  font-size: clamp(32px, 6vw, 52px);
}

.form-result-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.form-result-card.error {
  border-color: rgba(146, 56, 42, 0.3);
}

.metrics-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(34, 215, 222, 0.16), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(56, 243, 231, 0.12), transparent 28%),
    #06111c;
}

.metrics-hero {
  color: var(--white);
  background:
    linear-gradient(rgba(34, 215, 222, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 215, 222, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, rgba(5, 17, 28, 0.98), rgba(8, 32, 51, 0.86));
  background-size: 34px 34px, 34px 34px, auto;
  border-bottom: 1px solid rgba(34, 215, 222, 0.25);
}

.metrics-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 24px 82px;
}

.metrics-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.95;
}

.metrics-hero .lead {
  max-width: 760px;
  color: #c7d9d0;
}

.metrics-logo {
  display: block;
  width: min(620px, 100%);
  height: auto;
  margin-bottom: 26px;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 18px rgba(34, 215, 222, 0.32));
}

.metrics-dashboard {
  max-width: 1180px;
  margin: -38px auto 0;
  padding: 0 24px 92px;
}

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

.metric-card,
.metrics-panel,
.metrics-table-card,
.metrics-note,
.metrics-empty {
  border: 1px solid rgba(34, 215, 222, 0.18);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(4, 14, 23, 0.16);
}

.metric-card {
  padding: 22px;
}

.metric-card span {
  color: #087b86;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin-top: 10px;
  color: #082033;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.metric-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.metrics-empty,
.metrics-note {
  margin-top: 18px;
  padding: 28px;
}

.metrics-empty h2,
.metrics-note h2 {
  margin: 0 0 8px;
}

.metrics-empty p,
.metrics-note p {
  margin: 0;
  color: var(--muted);
}

.metrics-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.metrics-panel {
  padding: 26px;
}

.metrics-panel h2,
.metrics-table-card h2 {
  margin: 0 0 18px;
  color: #082033;
  font-size: 24px;
}

.metric-bars {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.metric-row-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
  color: var(--ink);
  font-weight: 850;
}

.metric-row-head span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-row-head strong {
  color: #087b86;
}

.metric-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4f6f7;
}

.metric-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #087b86, #22d7de);
}

.metrics-table-card {
  margin-top: 18px;
  padding: 26px;
}

.metrics-table-wrap {
  overflow-x: auto;
}

.metrics-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.metrics-table th,
.metrics-table td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.metrics-table th {
  color: #087b86;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.metrics-table td {
  color: var(--muted);
  font-size: 14px;
}

.corporate-page {
  --acid: #22d7de;
  --acid-2: #38f3e7;
  --code-blue: #061827;
  --dead: #dff7ff;
  background:
    radial-gradient(circle at 12% 8%, rgba(34, 215, 222, 0.18), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(56, 243, 231, 0.18), transparent 28%),
    #06111c;
  color: #e9f8ee;
}

.corp-hero {
  min-height: 760px;
  border-bottom: 1px solid rgba(34, 215, 222, 0.25);
  background:
    linear-gradient(rgba(34, 215, 222, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 215, 222, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
}

.corp-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px;
}

.corp-nav a {
  padding: 10px 14px;
  border: 1px solid rgba(34, 215, 222, 0.34);
  border-radius: 999px;
  background: rgba(8, 20, 17, 0.72);
  color: #e9f8ee;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.corp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.76fr);
  gap: 48px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 24px 110px;
}

.corp-copy h1 {
  max-width: 880px;
  color: #ffffff;
  font-size: clamp(46px, 7vw, 94px);
  text-shadow: 0 0 24px rgba(34, 215, 222, 0.16);
}

.corp-copy .lead {
  max-width: 780px;
  color: #c7d9d0;
}

.corp-brand {
  display: block;
  margin-bottom: 28px;
}

.pixel-fish-logo {
  display: block;
  width: clamp(300px, 46vw, 620px);
  height: auto;
  border-radius: 0;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 18px rgba(34, 215, 222, 0.32));
}

.corp-actions,
.corp-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.corp-terminal {
  overflow: hidden;
  border: 1px solid rgba(34, 215, 222, 0.32);
  border-radius: 18px;
  background: rgba(1, 9, 7, 0.86);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), 0 0 42px rgba(34, 215, 222, 0.16);
}

.terminal-bar {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid rgba(34, 215, 222, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.terminal-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--acid);
}

.terminal-bar span:nth-child(2) {
  background: #5ae7ff;
}

.terminal-bar span:nth-child(3) {
  background: #ff5c9a;
}

.corp-terminal pre {
  margin: 0;
  padding: 26px;
  color: var(--acid);
  font: 800 16px/1.65 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: pre-wrap;
}

.corp-apps {
  padding: 92px 24px;
  background: #f3f8ef;
  color: var(--ink);
}

.corp-app-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 22px;
  max-width: 1180px;
  margin: 36px auto 0;
}

.corp-app-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 22px;
  min-height: 440px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.corp-app-card.featured {
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1fr);
  align-items: center;
}

.corp-app-media {
  max-width: 240px;
  justify-self: center;
}

.corp-app-media img {
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(14, 31, 25, 0.22);
}

.corp-app-content h3 {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.95;
}

.corp-app-content p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.corp-app-card.future {
  color: #e9f8ee;
  background:
    radial-gradient(circle at 72% 12%, rgba(34, 215, 222, 0.25), transparent 30%),
    linear-gradient(135deg, #08110f, #152721);
  border-color: rgba(34, 215, 222, 0.32);
}

.corp-app-card.future .corp-app-content h3,
.corp-app-card.future .eyebrow {
  color: var(--acid);
}

.corp-app-card.future .corp-app-content p:not(.eyebrow) {
  color: #c7d9d0;
}

.future-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 11px;
  border: 1px solid rgba(34, 215, 222, 0.38);
  border-radius: 999px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.always-ready-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 150px;
}

.always-ready-visual.large {
  min-height: 360px;
}

.always-ready-visual.large .pulse-ring {
  width: 230px;
  height: 230px;
}

.always-ready-visual.large .ready-mark {
  width: 126px;
  height: 126px;
  border-radius: 32px;
  font-size: 86px;
}

.pulse-ring {
  position: absolute;
  width: 128px;
  height: 128px;
  border: 2px solid rgba(34, 215, 222, 0.68);
  border-radius: 50%;
  box-shadow: 0 0 38px rgba(34, 215, 222, 0.26);
}

.ready-mark {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: var(--acid);
  color: #07100e;
  font-size: 52px;
  font-weight: 950;
}

.corp-manifesto {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  max-width: none;
  padding: 86px 24px;
  background: #07100e;
  color: #e9f8ee;
}

.corp-manifesto > * {
  max-width: 1180px;
}

.corp-manifesto h2 {
  color: #ffffff;
}

.corp-manifesto p:last-child {
  max-width: 760px;
  color: #c7d9d0;
  font-size: 19px;
}

.corporate-page footer {
  border-top-color: rgba(34, 215, 222, 0.26);
  color: #aebfb6;
}

.corporate-page footer strong {
  color: var(--acid);
}

.apple-info {
  background: #eef6ef;
}

.trust {
  align-items: center;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer strong {
  color: var(--green-dark);
}

@media (max-width: 1000px) {
  .hero-grid,
  .section,
  .tools,
  .situation,
  .content-preview,
  .platform-strip,
  .commercial-band,
  .premium-showcase,
  .premium-showcase.reverse,
  .feature-columns,
  .premium-card,
  .corp-hero-grid,
  .corp-app-grid,
  .corp-app-card.featured,
  .corp-manifesto,
  .metrics-grid,
  .metrics-panels,
  .donation-card,
  .feedback-card,
  .apple-hero-grid,
  .waitlist-card {
    grid-template-columns: 1fr;
  }

  .apple-preview {
    justify-self: center;
  }

  .premium-showcase.reverse .premium-showcase-copy {
    order: 0;
  }

  .hero-phone {
    justify-self: center;
    max-width: 360px;
  }

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

  .benefit-grid {
    grid-template-columns: 1fr;
  }

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

  .corp-app-media {
    max-width: 220px;
  }

}

@media (max-width: 680px) {
  .topbar,
  .corp-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 14px;
  }

  .topbar a,
  .corp-nav a {
    flex: 1 1 auto;
    font-size: 13px;
    text-align: center;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 42px;
  }

  .logo {
    width: 70px;
    height: 70px;
  }

  .lead {
    font-size: 18px;
  }

  .screen-grid,
  .phone-stack,
  .gallery-row,
  .tool-strip,
  .demo-screens,
  .tri-screens,
  .topic-visual-grid,
  .premium-stats {
    grid-template-columns: 1fr;
  }

  .demo-screens .phone-shot:nth-child(2),
  .tri-screens .phone-shot:nth-child(2),
  .tri-screens .phone-shot:nth-child(3) {
    margin-top: 0;
  }

  .solo-demo {
    max-width: none;
  }

  .comparison-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .comparison-row span:first-child {
    grid-column: 1 / -1;
  }

  .phone-stack img:nth-child(2) {
    margin-top: 0;
  }

  .section,
  .platform-strip,
  .commercial-band,
  .use-cases,
  .premium-detail,
  .feature-section,
  .donation,
  .feedback-section,
  .apple-waitlist,
  .apple-info,
  .premium {
    padding: 64px 16px;
  }

  .corp-hero {
    min-height: auto;
  }

  .corp-hero-grid {
    padding: 44px 16px 72px;
  }

  .corp-brand {
    margin-bottom: 24px;
  }

  .pixel-fish-logo {
    width: min(100%, 330px);
  }

  .corp-terminal pre {
    padding: 18px;
    font-size: 13px;
  }

  .corp-apps,
  .corp-manifesto {
    padding: 64px 16px;
  }

  .store-badge {
    flex: 1 1 100%;
    min-width: 0;
  }

  .feature-card,
  .premium-showcase,
  .donation-card,
  .feedback-card,
  .corp-app-card,
  .waitlist-card,
  .metric-card,
  .metrics-panel,
  .metrics-table-card,
  .premium-card {
    padding: 22px;
  }

  .metrics-hero-inner {
    padding: 44px 16px 70px;
  }

  .metrics-dashboard {
    padding: 0 16px 64px;
  }

  .metrics-grid {
    gap: 12px;
  }

  .metrics-table {
    min-width: 680px;
  }

  .donation-button {
    width: 100%;
    min-width: 0;
  }

  .feedback-button {
    width: 100%;
    min-width: 0;
  }

  .payment-actions {
    max-width: none;
  }

  .apple-hero-grid {
    min-height: auto;
    padding: 44px 16px 64px;
  }

  footer {
    display: block;
  }
}
