:root {
  --sky-100: #d9f2ff;
  --sky-200: #a6dbff;
  --sky-300: #78c2f4;
  --sky-400: #4aa7e6;
  --blue-600: #2e6fc2;
  --blue-700: #1f5aa8;
  --ink: #0d1a27;
  --muted: #5b6f86;
  --paper: #f8fbff;
  --white: #ffffff;
  --celsius: #73bff2;
  --fahrenheit: #408cd9;
  --shadow: 0 30px 80px rgba(13, 26, 39, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", "Helvetica Neue", Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(115, 191, 242, 0.3), transparent 55%),
    radial-gradient(circle at 30% 20%, rgba(64, 140, 217, 0.18), transparent 60%),
    linear-gradient(135deg, #eaf6ff 0%, #d6efff 45%, #f4faff 100%);
  min-height: 100vh;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(36, 90, 168, 0.25);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo-name {
  font-size: 28px;
  font-weight: 700;
}

.logo-tagline {
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-700);
}

.badge-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.header-links a {
  color: var(--blue-700);
  text-decoration: none;
}

.header-links a:hover {
  text-decoration: underline;
}

.inline-badges {
  margin-top: 20px;
}

.store-badge img {
  height: 46px;
  display: block;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 16px 0;
}

.kicker {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue-700);
  font-weight: 600;
}

.quote-block {
  margin: 24px 0 16px;
  padding: 18px 22px;
  border-left: 4px solid var(--fahrenheit);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 50, 90, 0.12);
}

.details-block {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(115, 191, 242, 0.3);
}

.details-block summary {
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.details-block summary::-webkit-details-marker {
  display: none;
}

.details-caret {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.details-block[open] .details-caret {
  transform: rotate(90deg);
}

.details-body {
  margin-top: 12px;
}

.quote-block p {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--blue-700);
}

.lead {
  font-size: 18px;
  font-weight: 600;
}

.hero-copy p {
  line-height: 1.6;
  color: var(--muted);
}

.hero-phone {
  position: relative;
  display: grid;
  place-items: center;
}

.phone-shell {
  position: relative;
  width: min(320px, 80vw);
  aspect-ratio: 9 / 19.5;
  border-radius: 36px;
  padding: 16px 14px 18px;
  background: linear-gradient(160deg, #1c1f24, #3b3f45);
  box-shadow: 0 40px 90px rgba(11, 24, 40, 0.35);
  transform: rotate(-8deg) translateY(8px);
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 90px;
  height: 22px;
  background: #0b0c0f;
  border-radius: 14px;
  transform: translateX(-50%);
}

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(115, 191, 242, 0.35), transparent 70%);
  filter: blur(10px);
  z-index: -1;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-bottom: 12px;
}

.hero-card {
  padding: 28px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(115, 191, 242, 0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-700);
}

.card-highlight {
  font-size: 18px;
  font-weight: 600;
  color: var(--fahrenheit);
}

.story-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.story-list li {
  padding-left: 20px;
  position: relative;
}

.story-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--celsius);
  box-shadow: 0 0 0 4px rgba(115, 191, 242, 0.2);
}

.hero-signoff {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 18px;
  font-weight: 600;
  color: var(--fahrenheit);
}

.media-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(115, 191, 242, 0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 50px rgba(11, 24, 40, 0.1);
}

.media-card img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(11, 24, 40, 0.12);
}

.media-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--blue-700);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(115, 191, 242, 0.28), rgba(64, 140, 217, 0.15));
  border: 1px solid rgba(64, 140, 217, 0.2);
}

.cta h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 30px);
}

.cta p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding-top: 12px;
  border-top: 1px solid rgba(64, 140, 217, 0.2);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 24px;
  row-gap: 12px;
  align-items: start;
}

.footer-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-text p {
  margin: 0;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-700);
}

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

.footer-text a:hover {
  text-decoration: underline;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  align-self: start;
  justify-self: end;
  margin-top: 28px;
}

.pana-logo-link img {
  width: 64px;
  height: 64px;
  display: block;
}

.footer-actions a:not(.pana-logo-link) {
  color: var(--blue-700);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.footer-actions a:not(.pana-logo-link):hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .phone-shell {
    transform: rotate(-3deg);
  }
}

@media (max-width: 720px) {
  .page {
    padding: 32px 20px 32px;
  }

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

  .store-badge img {
    height: 40px;
  }

  .hero-card {
    padding: 22px;
  }

  .hero {
    text-align: left;
  }

}
