:root {
  color-scheme: light;
  --color-primary: #0c8ce9;
  --color-secondary: #6cdac5;
  --color-tertiary: #1f2937;
  --color-text: #0f172a;
  --color-surface: #f6f8fc;
  --color-outline: rgba(31, 41, 55, 0.16);
  --gradient-hero: linear-gradient(135deg, #06122c 0%, #1f2937 40%, #0c8ce9 100%);
  --gradient-hero-alt: radial-gradient(circle at top right, rgba(108, 218, 197, 0.45), rgba(12, 140, 233, 0.8));
  --hero-photo: url("../assets/hero-serene.jpg");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-surface);
}

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

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

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(246, 248, 252, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 24px;
}

.header-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--color-tertiary);
}

.brand img {
  border-radius: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
}

.site-nav a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(12, 140, 233, 0.1);
  color: var(--color-primary);
}

.nav-cta {
  border: 1px solid rgba(12, 140, 233, 0.35);
  padding: 6px 16px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(12, 140, 233, 0.08);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--color-tertiary);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn .lang-short {
  display: none;
}

.lang-btn.is-active {
  background: #ffffff;
  color: var(--color-primary);
  box-shadow: 0 6px 16px rgba(12, 140, 233, 0.18);
}

.lang-btn:focus-visible {
  outline: 2px solid rgba(12, 140, 233, 0.4);
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: none;
  background: transparent;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-tertiary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 120px 0 80px;
  min-height: 90vh;
  background: var(--gradient-hero);
  color: #f8fbff;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% 30% 20%;
  background: var(--gradient-hero-alt);
  filter: blur(80px);
  opacity: 0.8;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(6, 18, 44, 0.6), rgba(6, 18, 44, 0.85)), var(--hero-photo);
  background-size: cover;
  background-position: center;
  mix-blend-mode: lighten;
  opacity: 0.35;
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(32px, 8vw, 80px);
}

.release-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(13, 21, 40, 0.5);
  border: 1px solid rgba(248, 251, 255, 0.25);
  color: rgba(248, 251, 255, 0.85);
  margin-bottom: 16px;
}

.release-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6cdac5;
}

.hero-copy .eyebrow {
  font-family: "Archivo", "Roboto", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(135, 218, 197, 0.9);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 18px;
  font-family: "Archivo", "Roboto", sans-serif;
}

.hero .lead {
  color: rgba(246, 248, 252, 0.86);
  font-size: 1.05rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: rgba(108, 218, 197, 0.2);
  color: #ffffff;
  border: 1px solid rgba(108, 218, 197, 0.4);
  box-shadow: 0 12px 26px rgba(12, 140, 233, 0.35);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(12, 140, 233, 0.45);
}

.btn.ghost {
  border: 1px solid rgba(248, 251, 255, 0.4);
  color: #f8fbff;
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  background: rgba(248, 251, 255, 0.12);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 32px 0 0;
}

.hero-meta dt {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 251, 255, 0.6);
  margin-bottom: 6px;
}

.hero-meta dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(248, 251, 255, 0.95);
}

.hero-preview {
  display: flex;
  justify-content: center;
}

.device-frame {
  width: min(360px, 88%);
  padding: 32px 24px 28px;
  border-radius: 32px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(248, 251, 255, 0.2);
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
}

.device-frame::after {
  content: "";
  position: absolute;
  inset: -15% -35%;
  background: radial-gradient(circle at 20% 20%, rgba(108, 218, 197, 0.2), transparent 70%),
    radial-gradient(circle at 70% 80%, rgba(12, 140, 233, 0.25), transparent 75%);
  opacity: 0.9;
  pointer-events: none;
}

.status-bar,
.session-chip,
.controls {
  position: relative;
  z-index: 1;
}

.status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(248, 251, 255, 0.8);
  font-size: 0.9rem;
}

.progress-ring {
  position: relative;
  margin: 32px auto 24px;
  width: 180px;
  height: 180px;
}

.progress-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: rgba(248, 251, 255, 0.12);
  stroke-width: 16;
}

.ring-progress {
  fill: none;
  stroke: rgba(108, 218, 197, 0.85);
  stroke-width: 16;
  stroke-linecap: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 132;
  filter: drop-shadow(0 4px 18px rgba(108, 218, 197, 0.4));
}

.progress-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #f8fbff;
}

.progress-label .minutes {
  font-size: 2.8rem;
  font-weight: 600;
}

.progress-label .seconds {
  font-size: 1.125rem;
  opacity: 0.7;
}

.session-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-right: 8px;
  margin-bottom: 8px;
  background: rgba(248, 251, 255, 0.12);
  color: rgba(248, 251, 255, 0.8);
  border: 1px solid rgba(248, 251, 255, 0.08);
}

.session-chip--active {
  background: rgba(108, 218, 197, 0.32);
  color: #ffffff;
  border-color: rgba(108, 218, 197, 0.6);
}

.stats-preview {
  margin-top: 12px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(13, 21, 40, 0.55);
  border: 1px solid rgba(248, 251, 255, 0.12);
  backdrop-filter: blur(18px);
  color: rgba(248, 251, 255, 0.9);
}

.stats-preview header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(248, 251, 255, 0.7);
  margin-bottom: 12px;
}

.stats-preview ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.stats-preview li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
}

.stats-preview strong {
  font-weight: 600;
  color: #f8fbff;
}

.controls {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.control-btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(248, 251, 255, 0.18);
  background: rgba(248, 251, 255, 0.08);
  color: rgba(248, 251, 255, 0.9);
  backdrop-filter: blur(8px);
}

.control-btn--primary {
  background: rgba(108, 218, 197, 0.35);
  border-color: rgba(108, 218, 197, 0.6);
  color: #ffffff;
}

.section {
  padding: clamp(72px, 10vw, 110px) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: "Archivo", "Roboto", sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 16px;
  color: var(--color-tertiary);
}

.section-header p {
  margin: 0 auto;
  max-width: 540px;
  color: rgba(15, 23, 42, 0.74);
}

.release {
  background: linear-gradient(180deg, rgba(12, 140, 233, 0.08), rgba(108, 218, 197, 0.08));
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.release-card {
  background: #ffffff;
  border: 1px solid rgba(12, 140, 233, 0.16);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 32px 70px rgba(12, 140, 233, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.release-card .tag {
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(12, 140, 233, 0.08);
  color: var(--color-primary);
}

.release-card h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--color-tertiary);
}

.release-card p {
  margin: 0;
  color: rgba(15, 23, 42, 0.7);
}

.release-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(15, 23, 42, 0.7);
}

.release-card time {
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.6);
}

.roadmap {
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(12, 140, 233, 0.08);
  border: 1px solid rgba(12, 140, 233, 0.12);
}

.roadmap h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: var(--color-tertiary);
}

.roadmap-list {
  margin: 0;
  padding-left: 20px;
  color: rgba(15, 23, 42, 0.72);
  display: grid;
  gap: 8px;
}

.features {
  background: linear-gradient(180deg, rgba(12, 140, 233, 0.04), transparent 60%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 32px 60px rgba(12, 140, 233, 0.08);
  border: 1px solid rgba(12, 140, 233, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(12, 140, 233, 0.14);
}

.feature-card h3 {
  margin: 18px 0 12px;
  font-size: 1.2rem;
  color: var(--color-tertiary);
}

.feature-card p {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 1.35rem;
}

.feature-icon--primary {
  background: rgba(12, 140, 233, 0.12);
}

.feature-icon--secondary {
  background: rgba(108, 218, 197, 0.18);
}

.feature-icon--tertiary {
  background: rgba(31, 41, 55, 0.12);
}

.feature-icon--accent {
  background: rgba(249, 168, 37, 0.16);
}

.feature-icon--support {
  background: rgba(59, 130, 246, 0.16);
}

.feature-icon--surface {
  background: rgba(15, 23, 42, 0.08);
}

.cycles {
  background: radial-gradient(circle at top left, rgba(108, 218, 197, 0.12), transparent 50%),
    radial-gradient(circle at bottom right, rgba(12, 140, 233, 0.15), transparent 55%);
}

.cycles-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

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

.feature-list li {
  padding-left: 32px;
  position: relative;
  color: rgba(15, 23, 42, 0.78);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(12, 140, 233, 0.75), rgba(108, 218, 197, 0.75));
  box-shadow: 0 4px 10px rgba(12, 140, 233, 0.25);
}

.card-preview {
  display: flex;
  justify-content: center;
}

.cycle-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  padding: 28px;
  width: min(340px, 100%);
  border: 1px solid rgba(12, 140, 233, 0.16);
  box-shadow: 0 28px 54px rgba(12, 140, 233, 0.12);
  backdrop-filter: blur(10px);
}

.cycle-card header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.cycle-card .badge {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(12, 140, 233, 0.7);
}

.cycle-card .title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-tertiary);
}

.cycle-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.cycle-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(12, 140, 233, 0.06);
  border: 1px solid rgba(12, 140, 233, 0.12);
  color: var(--color-tertiary);
  font-weight: 500;
}

.cycle-card li:nth-child(2n) {
  background: rgba(108, 218, 197, 0.12);
  border-color: rgba(108, 218, 197, 0.16);
}

.stats {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(12, 140, 233, 0.04));
}

.stats-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 8vw, 80px);
  align-items: center;
}

.chart-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(12, 140, 233, 0.12);
  box-shadow: 0 32px 60px rgba(31, 41, 55, 0.12);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--color-tertiary);
}

.chart-header .value {
  font-size: 1.6rem;
  color: var(--color-primary);
}

.chart {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  height: 200px;
  margin-bottom: 24px;
}

.chart span {
  display: block;
  width: 100%;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, rgba(12, 140, 233, 0.92), rgba(108, 218, 197, 0.65));
  box-shadow: 0 10px 22px rgba(12, 140, 233, 0.25);
}

.chart-legend {
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(15, 23, 42, 0.72);
  font-size: 0.95rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.dot--primary {
  background: var(--color-primary);
}

.dot--secondary {
  background: var(--color-secondary);
}

.testimonials {
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.75), #ffffff 90%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.testimonials figure {
  margin: 0;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(12, 140, 233, 0.12);
  box-shadow: 0 24px 48px rgba(12, 140, 233, 0.08);
}

.testimonials blockquote {
  margin: 0 0 16px;
  font-style: italic;
  color: rgba(15, 23, 42, 0.84);
}

.testimonials figcaption {
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.6);
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.faq details {
  padding: 20px 24px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(12, 140, 233, 0.12);
  box-shadow: 0 18px 36px rgba(12, 140, 233, 0.08);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-tertiary);
  list-style: none;
}

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

.faq details[open] summary {
  color: var(--color-primary);
}

.faq details p {
  margin: 14px 0 0;
  color: rgba(15, 23, 42, 0.72);
}

.download {
  background: linear-gradient(135deg, rgba(12, 140, 233, 0.08), rgba(108, 218, 197, 0.08));
}

.download-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: center;
}

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

.waitlist-form label {
  font-weight: 600;
  color: var(--color-tertiary);
}

.input-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.input-group input {
  flex: 1 1 220px;
  min-width: 220px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(12, 140, 233, 0.25);
  font-size: 1rem;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-group input:focus-visible {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(12, 140, 233, 0.16);
}

.input-group button {
  padding: 12px 24px;
  border-radius: 16px;
  border: none;
  color: #ffffff;
  font-weight: 600;
  background: linear-gradient(135deg, #0c8ce9, #6cdac5);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.input-group button:hover,
.input-group button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(12, 140, 233, 0.25);
}

.disclaimer {
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.6);
}

.waitlist-form .confirmation {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: var(--color-primary);
}

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

.store-links .label {
  font-weight: 600;
  color: var(--color-tertiary);
}

.badges {
  display: grid;
  gap: 12px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 18px;
  font-weight: 600;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: rgba(15, 23, 42, 0.76);
  pointer-events: auto;
}

.store-badge[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.6;
}

.store-badge--ios {
  border-color: rgba(12, 140, 233, 0.18);
}

.store-badge--android {
  border-color: rgba(108, 218, 197, 0.22);
}

.store-badge--web {
  border-color: rgba(31, 41, 55, 0.18);
  color: var(--color-primary);
}

.site-footer {
  padding: 32px 0 60px;
  background: #0d1528;
  color: rgba(248, 251, 255, 0.8);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.footer-content .brand {
  color: rgba(248, 251, 255, 0.95);
}

.footer-note {
  margin: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
}

.footer-links a {
  color: rgba(248, 251, 255, 0.8);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.policy-page .hero,
.policy-page .features,
.policy-page .cycles,
.policy-page .stats,
.policy-page .testimonials,
.policy-page .download {
  background: none;
}

.policy-hero {
  padding: clamp(96px, 12vw, 140px) 0 48px;
  background: linear-gradient(135deg, rgba(12, 140, 233, 0.12), rgba(108, 218, 197, 0.12));
}

.policy-hero .eyebrow {
  font-family: "Archivo", "Roboto", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: rgba(12, 140, 233, 0.8);
  margin-bottom: 12px;
}

.policy-hero h1 {
  font-family: "Archivo", "Roboto", sans-serif;
  font-size: clamp(2.2rem, 3.2vw, 2.8rem);
  margin: 0 0 16px;
  color: var(--color-tertiary);
}

.policy-hero .lead {
  max-width: 680px;
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
}

.policy-updated {
  margin: 24px 0 0;
  color: rgba(15, 23, 42, 0.56);
  font-size: 0.95rem;
}

.policy-section {
  padding: clamp(48px, 8vw, 96px) 0;
}

.policy-content {
  display: grid;
  gap: 40px;
  max-width: 840px;
}

.policy-content article {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px 32px;
  border: 1px solid rgba(12, 140, 233, 0.12);
  box-shadow: 0 18px 32px rgba(12, 140, 233, 0.08);
}

.policy-content h2 {
  margin: 0 0 16px;
  color: var(--color-tertiary);
  font-size: 1.35rem;
}

.policy-content p {
  margin: 0 0 14px;
  color: rgba(15, 23, 42, 0.74);
}

.policy-content ul {
  margin: 0 0 14px;
  padding-left: 20px;
  color: rgba(15, 23, 42, 0.74);
}

.policy-content code {
  font-family: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  background: rgba(12, 140, 233, 0.08);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.95em;
}

.policy-content a {
  color: var(--color-primary);
}

.policy-content a:hover,
.policy-content a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .policy-content article {
    padding: 24px;
  }
}

@media (max-width: 960px) {
  .site-nav {
    display: none;
    position: absolute;
    inset: 60px 20px auto;
    flex-direction: column;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 36px rgba(12, 140, 233, 0.18);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-controls {
    justify-content: flex-end;
    gap: 12px;
  }

  .lang-switch {
    background: rgba(12, 140, 233, 0.12);
    gap: 4px;
  }

  .lang-btn {
    padding: 6px 8px;
    font-size: 0.8rem;
  }

  .lang-btn .lang-full {
    display: none;
  }

  .lang-btn .lang-short {
    display: inline;
  }

  .hero-content,
  .cycles-content,
  .stats-content {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 96px 0 64px;
  }

  .hero-preview {
    order: -1;
  }

  .device-frame {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.2rem;
  }

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

  .hero-actions {
    justify-content: center;
  }

  .section {
    padding: 64px 0;
  }

  .header-content {
    padding: 10px 0;
  }

  .site-footer {
    text-align: center;
  }

  .footer-content {
    justify-content: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
