:root {
  --bg: #f4f7f6;
  --surface: #ffffff;
  --surface-soft: #eef4f3;
  --ink: #1a1f26;
  --ink-soft: #1e293b;
  --muted: #64748b;
  --muted-light: #94a3b8;
  --mint: #30e88c;
  --mint-dark: #1ab874;
  --brand-teal: #149c95;
  --brand-wave: #45b6af;
  --deep-green: #0aa66f;
  --blue: #3ea8ff;
  --charcoal: #1a1f26;
  --navy: #1e293b;
  --line: rgba(26, 31, 38, 0.1);
  --shadow: 0 24px 70px rgba(39, 55, 77, 0.14);
  --shadow-soft: 0 16px 44px rgba(39, 55, 77, 0.1);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 150px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(62, 168, 255, 0.14), transparent 34%),
    radial-gradient(circle at 10% 0%, rgba(20, 156, 149, 0.1), transparent 30%),
    linear-gradient(180deg, #fbfdfc 0%, var(--bg) 42%, #eef3f2 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  width: min(var(--max), calc(100% - 40px));
  margin: 18px auto 0;
  min-height: 72px;
  padding: 12px 14px 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 60px rgba(39, 55, 77, 0.08);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 14px;
  z-index: 10;
}

.brand-lockup,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.app-mark {
  width: 36px;
  height: 36px;
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--brand-teal);
  box-shadow: 0 12px 26px rgba(20, 156, 149, 0.22), 0 0 0 1px rgba(20, 156, 149, 0.12);
}

.app-mark::before {
  content: "";
  position: absolute;
  left: -18%;
  right: -18%;
  bottom: -18%;
  height: 58%;
  border-radius: 48% 52% 0 0;
  background: var(--brand-wave);
}

.app-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(#f4fbfa, #f4fbfa) center / 48% 10% no-repeat,
    linear-gradient(#f4fbfa, #f4fbfa) center / 10% 48% no-repeat;
}

.app-mark-large {
  width: 56px;
  height: 56px;
  border-width: 4px;
}

.app-mark-small {
  width: 30px;
  height: 30px;
  border-width: 2px;
}

.brand-lockup span {
  font-size: 20px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.site-nav a:hover {
  color: var(--ink);
}

.button {
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-teal), var(--deep-green));
  box-shadow: 0 18px 34px rgba(20, 156, 149, 0.22);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(16, 24, 39, 0.09);
  box-shadow: 0 14px 34px rgba(39, 55, 77, 0.08);
}

.button-light {
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
}

.button-large {
  min-height: 58px;
  padding: 0 28px;
  font-size: 15px;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

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

.store-button {
  min-width: 208px;
  min-height: 66px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(26, 31, 38, 0.09);
  box-shadow: 0 16px 34px rgba(39, 55, 77, 0.1);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.store-button:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 156, 149, 0.28);
  box-shadow: 0 20px 42px rgba(39, 55, 77, 0.14);
}

.store-button small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-button-dark {
  color: #ffffff;
  background: linear-gradient(135deg, var(--charcoal), var(--navy));
  border-color: rgba(255, 255, 255, 0.12);
}

.store-button-dark small {
  color: rgba(255, 255, 255, 0.65);
}

.store-button.is-pending {
  cursor: default;
}

.store-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-teal), var(--deep-green));
}

.store-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.store-icon-apple {
  color: var(--charcoal);
  background: #ffffff;
}

main {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 54px;
  padding: 56px 0 68px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.055em;
}

h1 {
  max-width: 780px;
  font-size: clamp(4rem, 7.6vw, 7.4rem);
  line-height: 0.9;
}

h2 {
  max-width: 820px;
  font-size: clamp(2.4rem, 5.4vw, 5.4rem);
  line-height: 0.95;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -0.03em;
}

p {
  color: var(--muted);
}

.hero-subtitle {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  line-height: 1.62;
}

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

.hero-actions-secondary {
  margin-top: 14px;
}

.availability {
  margin: 18px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.availability::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-teal);
  box-shadow: 0 0 0 6px rgba(20, 156, 149, 0.12);
}

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

.product-shell {
  width: min(100%, 440px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(235, 243, 242, 0.78)),
    var(--surface-soft);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.product-shell::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -72px;
  top: -64px;
  border-radius: 50%;
  background: rgba(20, 156, 149, 0.12);
}

.product-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.product-topline div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
}

.product-topline strong {
  color: var(--ink);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(20, 156, 149, 0.12);
}

.product-brand {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.product-card,
.product-mini,
.assistant-card {
  position: relative;
  z-index: 1;
  border-radius: 24px;
}

.product-card-dark {
  margin-top: 22px;
  padding: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 15%, rgba(20, 156, 149, 0.26), transparent 36%),
    linear-gradient(145deg, var(--charcoal), var(--navy));
  box-shadow: 0 20px 44px rgba(26, 31, 38, 0.24);
}

.product-card span,
.product-mini span,
.assistant-card span,
.pro-benefits span {
  display: block;
  color: var(--muted-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card strong {
  display: block;
  margin-top: 12px;
  font-size: 34px;
  letter-spacing: -0.05em;
}

.product-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.product-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.product-mini {
  padding: 18px 14px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.product-mini strong {
  display: block;
  margin-top: 12px;
  font-size: 24px;
}

.assistant-card {
  margin-top: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(62, 168, 255, 0.18);
}

.assistant-card span {
  color: var(--brand-teal);
}

.assistant-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 600;
}

.positioning,
.split-section,
.features-section,
.news-home-section,
.pro-section,
.trust-section,
.final-cta {
  margin-top: 34px;
  border-radius: var(--radius);
}

.positioning,
.split-section,
.features-section,
.trust-section,
.final-cta {
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.section-heading {
  max-width: 900px;
}

.section-lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.65;
}

.pillar-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.pillar-grid article,
.trust-grid article,
.feature-list article {
  padding: 28px;
  border: 1px solid rgba(16, 24, 39, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(39, 55, 77, 0.07);
}

.pillar-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--brand-teal);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.pillar-grid p,
.trust-grid p,
.feature-list p {
  margin: 12px 0 0;
  line-height: 1.65;
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
  margin-top: 44px;
}

.ai-panel {
  padding: 26px;
  border-radius: 32px;
  background: #f7fbfa;
  box-shadow: inset 8px 8px 22px rgba(148, 163, 184, 0.22), inset -8px -8px 22px #ffffff;
}

.ai-message,
.ai-response {
  max-width: 88%;
  padding: 18px 20px;
  border-radius: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.ai-message {
  margin-left: auto;
  color: #ffffff;
  background: var(--blue);
  border-bottom-right-radius: 8px;
}

.ai-response {
  margin-top: 16px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(39, 55, 77, 0.08);
  border-bottom-left-radius: 8px;
}

.copy-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

.copy-list ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.copy-list li {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.copy-list li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--brand-teal);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.news-home-section {
  padding: clamp(34px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 88% 18%, rgba(62, 168, 255, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(236, 246, 243, 0.72));
  box-shadow: var(--shadow-soft);
}

.news-home-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 30px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

.news-home-card {
  padding: 30px;
  border-radius: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 10%, rgba(69, 182, 175, 0.28), transparent 32%),
    linear-gradient(145deg, var(--charcoal), var(--navy));
  box-shadow: 0 24px 58px rgba(16, 24, 39, 0.22);
}

.news-kicker,
.article-category {
  color: var(--brand-wave);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-home-card strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.news-home-card ul {
  margin: 28px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.news-home-card li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.news-home-card small {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

/* Central editorial */
.news-page main,
.article-page main {
  padding-bottom: 48px;
}

.news-page .site-header,
.article-page .site-header {
  position: relative;
}

.news-hero {
  padding: clamp(64px, 10vw, 120px) 0 62px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.6fr);
  gap: 48px;
  align-items: end;
}

.news-hero h1 {
  max-width: 900px;
  font-size: clamp(3.8rem, 8.4vw, 7.8rem);
}

.news-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.65;
}

.editorial-note {
  padding: 24px;
  border: 1px solid rgba(20, 156, 149, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.editorial-note strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.editorial-note p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

.news-featured {
  overflow: hidden;
  border-radius: 32px;
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 8%, rgba(62, 168, 255, 0.32), transparent 32%),
    linear-gradient(145deg, #101827, #1e293b);
  box-shadow: 0 30px 78px rgba(16, 24, 39, 0.24);
}

.news-featured-media {
  display: block;
  overflow: hidden;
  background: #06182d;
}

.news-featured-media img,
.article-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.news-featured-copy {
  padding: clamp(30px, 5vw, 54px);
}

.news-featured h2,
.news-featured h3 {
  color: #ffffff;
}

.news-featured h2 {
  margin-top: 14px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.news-featured p {
  max-width: 670px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.65;
}

.news-grid-section {
  margin-top: 34px;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-soft);
}

.news-grid-section h2 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

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

.news-card {
  min-height: 330px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(16, 24, 39, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 34px rgba(39, 55, 77, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(39, 55, 77, 0.12);
}

.news-card h3 {
  margin-top: 20px;
  font-size: 28px;
  line-height: 1.08;
}

.news-card p {
  margin: 16px 0 24px;
  line-height: 1.62;
}

.news-card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.news-card-link {
  margin-top: auto;
  color: var(--brand-teal);
  font-weight: 900;
}

.empty-board {
  margin-top: 34px;
  padding: 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  border: 1px dashed rgba(20, 156, 149, 0.34);
  border-radius: 24px;
  background: rgba(20, 156, 149, 0.06);
}

.empty-board-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: var(--brand-teal);
  font-size: 26px;
  font-weight: 900;
}

.empty-board strong {
  color: var(--ink);
  font-size: 18px;
}

.empty-board p {
  margin: 7px 0 0;
  line-height: 1.55;
}

.article-shell {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(62px, 9vw, 112px) 0 42px;
}

.article-breadcrumb {
  margin-bottom: 28px;
  color: var(--brand-teal);
  font-size: 14px;
  font-weight: 800;
}

.article-shell h1 {
  font-size: clamp(3.3rem, 7vw, 6.8rem);
}

.article-deck {
  margin: 26px 0 22px;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.65;
}

.article-hero-media {
  overflow: hidden;
  margin: 34px 0 0;
  border-radius: 28px;
  background: #06182d;
  box-shadow: 0 24px 58px rgba(16, 24, 39, 0.2);
}

.article-hero-media figcaption {
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.72);
  background: #06182d;
  font-size: 12px;
  font-weight: 700;
}

.article-app-cta {
  margin-top: 42px;
  padding: clamp(26px, 5vw, 42px);
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(20, 156, 149, 0.12), rgba(62, 168, 255, 0.1));
}

.article-app-cta h2 {
  margin: 10px 0 8px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.article-app-cta p {
  max-width: 520px;
  margin: 0;
}

.article-app-cta .button {
  flex: 0 0 auto;
}

.article-body {
  max-width: 780px;
  margin: 44px auto 0;
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.article-body h2 {
  margin: 48px 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p,
.article-body li {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.78;
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
}

.article-callout {
  margin: 34px 0;
  padding: 24px;
  border-left: 4px solid var(--brand-teal);
  border-radius: 0 18px 18px 0;
  background: rgba(20, 156, 149, 0.08);
}

.article-callout strong {
  color: var(--ink);
}

.article-disclaimer {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.competition-facts {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.competition-facts div {
  padding: 20px;
  border: 1px solid rgba(20, 156, 149, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.competition-facts span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.competition-facts strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 21px;
  letter-spacing: -0.035em;
}

.official-source-links {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.official-source-links a {
  padding: 20px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(20, 156, 149, 0.18);
  border-radius: 18px;
  background: rgba(20, 156, 149, 0.06);
  transition: transform 180ms ease, border-color 180ms ease;
}

.official-source-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 156, 149, 0.42);
}

.official-source-links strong {
  color: var(--brand-teal);
}

.official-source-links span {
  color: var(--muted);
  line-height: 1.5;
}

.ronda-main {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.ronda-hero {
  min-height: 720px;
  padding: 72px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.ronda-hero h1 {
  max-width: 720px;
  margin: 16px 0 24px;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.ronda-hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.65;
}

.ronda-actions,
.ronda-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ronda-actions {
  margin-top: 30px;
}

.ronda-tags {
  margin-top: 24px;
}

.ronda-tags span {
  padding: 9px 13px;
  border-radius: 999px;
  color: #08745d;
  background: rgba(20, 156, 149, 0.1);
  border: 1px solid rgba(20, 156, 149, 0.14);
  font-size: 13px;
  font-weight: 800;
}

.ronda-scene {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 44px;
  background:
    linear-gradient(180deg, rgba(69, 182, 175, 0.28) 0 58%, rgba(224, 208, 174, 0.74) 58% 100%);
  box-shadow: var(--shadow);
}

.ronda-sun {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 44px;
  right: 52px;
  border-radius: 50%;
  background: #ffe34d;
  box-shadow: 0 0 0 22px rgba(255, 227, 77, 0.18);
}

.ronda-tent {
  width: 240px;
  height: 200px;
  position: absolute;
  left: 46px;
  bottom: 54px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-teal), var(--deep-green));
  clip-path: polygon(50% 0, 100% 38%, 88% 38%, 88% 100%, 12% 100%, 12% 38%, 0 38%);
  filter: drop-shadow(0 22px 30px rgba(16, 24, 39, 0.18));
}

.ronda-tent span {
  margin-top: 44px;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.ronda-van {
  width: 330px;
  height: 176px;
  position: absolute;
  right: 38px;
  bottom: 64px;
  padding: 44px 24px;
  border-radius: 56px 28px 24px 24px;
  color: #ffffff;
  background: linear-gradient(145deg, #101827, #1e293b);
  box-shadow: 0 28px 42px rgba(16, 24, 39, 0.26);
}

.ronda-van strong {
  font-size: 29px;
  letter-spacing: -0.05em;
}

.ronda-van-window {
  width: 88px;
  height: 56px;
  position: absolute;
  top: 18px;
  right: 22px;
  border-radius: 24px 20px 8px 8px;
  background: var(--blue);
}

.ronda-wheel {
  width: 58px;
  height: 58px;
  position: absolute;
  bottom: -29px;
  border: 12px solid #0d1320;
  border-radius: 50%;
  background: #dbe4e7;
}

.ronda-wheel-left { left: 52px; }
.ronda-wheel-right { right: 44px; }

.ronda-gifts {
  position: absolute;
  left: 230px;
  bottom: 42px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.ronda-gifts span {
  width: 36px;
  height: 44px;
  display: block;
  border-radius: 8px;
  background: #ff78b7;
  box-shadow: inset 0 8px 0 rgba(255, 255, 255, 0.28);
}

.ronda-gifts span:nth-child(2) { height: 58px; background: #ffe34d; }
.ronda-gifts span:nth-child(3) { height: 38px; background: var(--blue); }

.ronda-section,
.ronda-season,
.ronda-care {
  margin-top: 34px;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.ronda-section h2,
.ronda-season h2,
.ronda-nominate h2,
.ronda-care h2 {
  max-width: 850px;
  margin: 12px 0 30px;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.ronda-steps,
.ronda-hospitals,
.ronda-care-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ronda-steps article,
.ronda-hospitals article,
.ronda-care-grid p {
  margin: 0;
  padding: 24px;
  border-radius: 22px;
  background: var(--surface-soft);
  border: 1px solid rgba(20, 156, 149, 0.12);
}

.ronda-steps article > span,
.ronda-hospitals article > span {
  color: var(--brand-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ronda-steps h3,
.ronda-hospitals strong {
  display: block;
  margin: 16px 0 10px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.ronda-steps p,
.ronda-care-grid p,
.ronda-season-note,
.ronda-nominate p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.ronda-season-heading,
.ronda-nominate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.ronda-status {
  flex: 0 0 auto;
  padding: 11px 16px;
  border-radius: 999px;
  color: #8a5a00;
  background: rgba(255, 227, 77, 0.32);
  border: 1px solid rgba(138, 90, 0, 0.14);
  font-size: 13px;
  font-weight: 900;
}

.ronda-season-note {
  max-width: 850px;
  margin: 24px 0 0;
  font-size: 14px;
}

.ronda-nominate {
  margin-top: 34px;
  padding: clamp(34px, 6vw, 72px);
  border-radius: var(--radius);
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 10%, rgba(69, 182, 175, 0.32), transparent 32%),
    linear-gradient(145deg, #101827, #1e293b);
  box-shadow: 0 30px 80px rgba(16, 24, 39, 0.24);
}

.ronda-nominate .eyebrow,
.ronda-nominate h2 { color: #ffffff; }
.ronda-nominate h2 { margin-bottom: 18px; }
.ronda-nominate p { max-width: 720px; color: rgba(255, 255, 255, 0.72); }
.ronda-nominate .button { flex: 0 0 auto; }

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

.ronda-care-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.social-section {
  margin-top: 34px;
  padding: clamp(34px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 12% 12%, rgba(20, 156, 149, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(239, 246, 245, 0.68));
  box-shadow: var(--shadow-soft);
}

.social-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

.social-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.social-points span,
.tag-row span {
  padding: 9px 13px;
  border-radius: 999px;
  color: #08745d;
  background: rgba(20, 156, 149, 0.1);
  border: 1px solid rgba(20, 156, 149, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.social-mock {
  display: grid;
  gap: 16px;
}

.feed-card {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(39, 55, 77, 0.1);
}

.feed-card:nth-child(2) {
  margin-left: 44px;
}

.feed-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feed-avatar {
  width: 44px;
  height: 44px;
  border-width: 3px;
}

.feed-author strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -0.04em;
}

.feed-author small {
  display: block;
  margin-top: 3px;
  color: var(--brand-teal);
  font-weight: 800;
}

.feed-card p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.58;
}

.source-card {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  color: var(--ink);
  background: rgba(20, 156, 149, 0.08);
  border: 1px solid rgba(20, 156, 149, 0.16);
  font-weight: 900;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.photo-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: #ffe34d;
  border: 3px solid #ffffff;
  box-shadow: 0 10px 22px rgba(39, 55, 77, 0.12);
  font-weight: 900;
}

.photo-preview {
  min-height: 180px;
  margin-top: 18px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 0%, rgba(26, 31, 38, 0.62) 100%),
    linear-gradient(135deg, #d9c295 0%, #f5dfbd 34%, #8cc7bb 68%, #1e293b 100%);
}

.photo-preview span {
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.feed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.pro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 34px;
  padding: clamp(34px, 6vw, 72px);
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 20%, rgba(20, 156, 149, 0.22), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(62, 168, 255, 0.28), transparent 28%),
    linear-gradient(145deg, #101827, #1e293b);
  box-shadow: 0 30px 80px rgba(16, 24, 39, 0.26);
}

.pro-section h2,
.pro-section .eyebrow {
  color: #ffffff;
}

.pro-section p {
  max-width: 660px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.65;
}

.pro-benefits {
  display: grid;
  gap: 14px;
}

.pro-benefits div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.pro-benefits span {
  color: var(--brand-wave);
}

.pro-benefits strong {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.45;
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  max-width: none;
  font-size: clamp(4rem, 10vw, 8rem);
}

.final-cta p {
  max-width: 620px;
  margin: 20px auto 28px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.55;
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 34px auto 30px;
  padding: 28px 4px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.footer-identity {
  display: grid;
  gap: 12px;
}

.company-info {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.65;
}

.company-info a {
  color: var(--ink-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
}

/* Documento juridico */
.legal-page .site-header {
  position: relative;
}

.legal-main {
  padding-bottom: 54px;
}

.legal-shell {
  width: min(980px, 100%);
  margin: 0 auto;
}

.legal-hero {
  padding: clamp(68px, 10vw, 118px) 0 52px;
  border-bottom: 1px solid rgba(20, 156, 149, 0.18);
}

.legal-hero h1 {
  max-width: 820px;
  margin-top: 12px;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.legal-deck {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.6;
}

.legal-updated {
  margin: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-updated span,
.legal-updated time {
  padding: 9px 13px;
  border: 1px solid rgba(20, 156, 149, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.legal-document {
  padding: 48px 0 0;
  display: grid;
  gap: 16px;
}

.legal-document .card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(20, 156, 149, 0.13);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.legal-document .card h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.legal-document .card p,
.legal-document .card li {
  color: var(--ink-soft);
  line-height: 1.72;
}

.legal-document .card p {
  margin: 0;
}

.legal-document .card p + p,
.legal-document .card ul + p,
.legal-document .card p + ul {
  margin-top: 12px;
}

.legal-document .card ul {
  margin: 0;
  padding-left: 22px;
}

.legal-document .card li + li {
  margin-top: 8px;
}

.legal-document .card a {
  color: var(--deep-green);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-document .highlight {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 4px solid var(--brand-teal);
  border-radius: 4px 16px 16px 4px;
  background: rgba(20, 156, 149, 0.09);
  color: var(--ink);
  font-weight: 650;
  line-height: 1.65;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms ease, transform 620ms ease;
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .site-header {
    width: min(100% - 28px, var(--max));
  }

  main,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .legal-hero {
    padding-top: 54px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 0 42px;
  }

  .hero-product {
    justify-content: stretch;
  }

  .product-shell {
    width: 100%;
  }

  .pillar-grid,
  .trust-grid,
  .feature-list,
  .split-content,
  .news-home-section,
  .news-hero,
  .news-featured,
  .social-section,
  .pro-section,
  .ronda-hero {
    grid-template-columns: 1fr;
  }

  .ronda-hero { min-height: auto; }
  .ronda-steps,
  .ronda-hospitals { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .pro-section {
    gap: 28px;
  }

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

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

@media (max-width: 620px) {
  .article-app-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .ronda-main { width: min(100% - 28px, var(--max)); }
  .ronda-hero { padding-top: 48px; }
  .ronda-hero h1 { font-size: clamp(3.7rem, 20vw, 6rem); }
  .ronda-scene { min-height: 420px; }
  .ronda-tent { left: 14px; width: 190px; height: 170px; }
  .ronda-van { right: 14px; width: 270px; height: 148px; }
  .ronda-gifts { left: 150px; }
  .ronda-steps,
  .ronda-hospitals,
  .ronda-care-grid { grid-template-columns: 1fr; }
  .ronda-season-heading,
  .ronda-nominate { align-items: stretch; flex-direction: column; }

  .site-header {
    top: 10px;
    min-height: 64px;
    padding: 10px 10px 10px 14px;
    border-radius: 20px;
  }

  .brand-lockup span {
    font-size: 18px;
  }

  .site-header .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-copy > .eyebrow {
    display: none;
  }

  h1 {
    font-size: clamp(3.9rem, 18vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.65rem);
  }

  .hero-subtitle,
  .section-lead,
  .copy-list p,
  .pro-section p,
  .final-cta p {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .button-large {
    width: 100%;
  }

  .store-actions {
    display: grid;
  }

  .store-button {
    width: 100%;
  }

  .product-brand {
    font-size: 42px;
  }

  .app-mark-large {
    width: 48px;
    height: 48px;
  }

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

  .positioning,
  .split-section,
  .features-section,
  .news-home-section,
  .social-section,
  .trust-section,
  .final-cta,
  .pro-section {
    padding: 28px;
    border-radius: 24px;
  }

  .pillar-grid article,
  .trust-grid article,
  .feature-list article {
    padding: 22px;
  }

  .ai-panel {
    padding: 18px;
  }

  .ai-message,
  .ai-response {
    max-width: 100%;
  }

  .feed-card:nth-child(2) {
    margin-left: 0;
  }

  .news-grid-section,
  .article-body {
    padding: 28px;
    border-radius: 24px;
  }

  .empty-board {
    grid-template-columns: 1fr;
  }

  .competition-facts {
    grid-template-columns: 1fr;
  }

  .photo-preview {
    min-height: 150px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
