/* me1click landing - modern, light, flat
   Colors: Primary #2563EB, Dark #0F172A, Gray #6B7280
*/

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --text: #0F172A;
  --muted: #6B7280;
  --primary: #2563EB;
  --primary-600: #1d4ed8;
  --primary-700: #1e40af;
  --border: #e5e7eb;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.10);
  --shadow-sm: 0 6px 16px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1140px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-120%);
  background: var(--text);
  color: white;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus { transform: translateY(12px); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229,231,235,0.7);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 42px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: rgba(15,23,42,0.85);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 10px;
}
.nav-links a:hover {
  background: rgba(37,99,235,0.08);
  color: var(--text);
}
.nav-links a.active {
  background: rgba(37,99,235,0.1);
  color: var(--primary-700);
}

/* About page */
.about-page { overflow-x: hidden; }
.about-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(37,99,235,.18), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.about-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -260px;
  top: 40px;
  border: 70px solid rgba(37,99,235,.04);
  border-radius: 50%;
}
.about-hero-grid {
  min-height: 430px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 56px;
  padding-bottom: 64px;
}
.about-hero-copy { position: relative; z-index: 2; }
.about-display {
  max-width: 660px;
  margin: 20px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
  color: rgba(15,23,42,.76);
}
.idea-orbit {
  position: relative;
  width: min(370px, 78vw);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
.orbit-ring {
  position: absolute;
  inset: 11%;
  border: 1px dashed rgba(37,99,235,.35);
  border-radius: 50%;
  animation: orbit-spin 24s linear infinite;
}
.orbit-ring::before, .orbit-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 8px rgba(37,99,235,.12);
}
.orbit-ring::before { width: 10px; height: 10px; top: 8%; left: 18%; }
.orbit-ring::after { width: 7px; height: 7px; right: 3%; bottom: 28%; }
.orbit-core {
  width: 164px;
  height: 164px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 44px;
  background: linear-gradient(145deg, var(--primary), var(--primary-700));
  color: #fff;
  font-size: 62px;
  line-height: .75;
  font-weight: 950;
  box-shadow: 0 30px 70px rgba(37,99,235,.3);
  transform: rotate(-5deg);
  animation: core-float 5s ease-in-out infinite;
}
.orbit-core img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(15,23,42,.2));
}
.orbit-icon {
  position: absolute;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37,99,235,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-sm);
  color: var(--primary);
  font-weight: 950;
  backdrop-filter: blur(8px);
}
.orbit-icon svg { width: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.orbit-icon-code { top: 5%; right: 16%; animation: icon-float 4s ease-in-out infinite; }
.orbit-icon-speed { bottom: 9%; right: 12%; animation: icon-float 4.8s ease-in-out .5s infinite; }
.orbit-icon-mobile { bottom: 25%; left: 0; animation: icon-float 4.4s ease-in-out 1s infinite; }
.about-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(37,99,235,.12);
  background: rgba(37,99,235,.055);
  color: rgba(37,99,235,.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  white-space: nowrap;
}
.about-marquee div { width: max-content; padding: 12px 0; animation: marquee 28s linear infinite; }
.about-story { position: relative; }
.about-story .container { position: relative; }
.about-story .container::before {
  content: "";
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(37,99,235,.25) 10%, rgba(37,99,235,.25) 90%, transparent);
}
.story-row {
  position: relative;
  width: calc(50% - 38px);
  margin: 44px 0 90px;
  padding: 28px;
  border: 1px solid rgba(229,231,235,.9);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(15,23,42,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.story-row:hover { transform: translateY(-6px); box-shadow: 0 24px 65px rgba(37,99,235,.13); }
.story-row-reverse { margin-left: calc(50% + 38px); }
.story-row::after {
  content: "";
  position: absolute;
  top: 54px;
  right: -45px;
  width: 13px;
  height: 13px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 1px rgba(37,99,235,.25);
}
.story-row-reverse::after { right: auto; left: -45px; }
.story-index { color: var(--primary); font-size: 12px; font-weight: 950; letter-spacing: .18em; }
.story-row h2 { margin: 7px 0 14px; font-size: clamp(24px, 3vw, 34px); line-height: 1.15; }
.story-row p { margin: 0 0 14px; color: rgba(15,23,42,.73); font-size: 16px; }
.story-row blockquote {
  margin: 22px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--primary);
  border-radius: 0 14px 14px 0;
  background: rgba(37,99,235,.065);
  font-size: 17px;
  font-weight: 800;
}
.story-icon {
  position: absolute;
  top: -27px;
  right: 22px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--primary-700));
  box-shadow: 0 12px 28px rgba(37,99,235,.25);
  transform: rotate(5deg);
}
.story-row-reverse .story-icon { right: auto; left: 22px; transform: rotate(-5deg); }
.story-icon svg { width: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.parent-company { padding: 0 0 84px; }
.parent-company-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 30px 34px;
  overflow: hidden;
  border: 1px solid rgba(37,99,235,.16);
  border-radius: 26px;
  background: linear-gradient(120deg, #eff6ff, #fff 58%, #f8fafc);
  box-shadow: 0 16px 50px rgba(37,99,235,.09);
}
.parent-company-card::after {
  content: "20+";
  position: absolute;
  right: 82px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(37,99,235,.05);
  font-size: 112px;
  line-height: 1;
  font-weight: 950;
  pointer-events: none;
}
.parent-company-mark {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 21px;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--primary-700));
  box-shadow: 0 14px 30px rgba(37,99,235,.25);
}
.parent-company-mark svg, .parent-company-arrow svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.parent-company-copy { position: relative; z-index: 1; }
.parent-company-copy h2 { margin: 5px 0 8px; font-size: clamp(24px, 3vw, 34px); }
.parent-company-copy p { margin: 0; max-width: 760px; color: rgba(15,23,42,.72); font-size: 16px; }
.parent-company-copy a { color: var(--primary-700); font-weight: 850; white-space: nowrap; }
.parent-company-copy a:hover { text-decoration: underline; }
.parent-company-arrow {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37,99,235,.2);
  border-radius: 50%;
  color: var(--primary);
  background: #fff;
  transition: transform .2s ease, background .2s ease;
}
.parent-company-arrow:hover { transform: translateX(5px); background: #eff6ff; }
.about-finale { padding: 10px 0 92px; }
.finale-card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 72px);
  border-radius: 32px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #0f172a 0%, #172554 55%, #1d4ed8 140%);
  box-shadow: 0 30px 80px rgba(15,23,42,.2);
}
.finale-card::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -170px;
  top: -190px;
  border: 60px solid rgba(255,255,255,.06);
  border-radius: 50%;
}
.finale-card h2 { position: relative; margin: 0 0 12px; font-size: clamp(30px, 4vw, 46px); }
.finale-card p { position: relative; max-width: 650px; margin: 0 auto; color: rgba(255,255,255,.76); font-size: 17px; }
.finale-card strong { position: relative; display: block; margin: 28px auto; font-size: clamp(20px, 3vw, 30px); }
.finale-card .btn { position: relative; background: #fff; color: var(--primary-700); box-shadow: none; }
.finale-card .btn:hover { background: #eff6ff; }
.finale-spark { position: absolute; left: 9%; top: 18%; color: #93c5fd; font-size: 34px; animation: spark 3s ease-in-out infinite; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes core-float { 50% { transform: rotate(-2deg) translateY(-10px); } }
@keyframes icon-float { 50% { transform: translateY(-9px) rotate(4deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes spark { 50% { transform: scale(1.35) rotate(25deg); opacity: .65; } }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: white;
  box-shadow: 0 1px 0 rgba(15,23,42,0.03);
  font-weight: 700;
  font-size: 13px;
  color: rgba(15,23,42,0.85);
  cursor: pointer;
}
.pill:hover {
  border-color: rgba(37,99,235,0.35);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 22px rgba(37,99,235,0.25);
}
.btn-primary:hover { background: var(--primary-600); }
.btn-outline {
  background: white;
  border-color: var(--border);
  color: rgba(15,23,42,0.9);
}
.btn-outline:hover { border-color: rgba(37,99,235,0.35); background: rgba(37,99,235,0.06); }

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: white;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hamburger span {
  width: 18px;
  height: 2px;
  background: rgba(15,23,42,0.85);
  position: relative;
  display: block;
}
.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(15,23,42,0.85);
}
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }

/* Hero */
.hero {
  padding: 44px 0 26px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto -20%;
  height: 520px;
  background: radial-gradient(closest-side, rgba(37,99,235,0.16), rgba(37,99,235,0.0));
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37,99,235,0.08);
  color: rgba(15,23,42,0.85);
  font-weight: 800;
  font-size: 13px;
  width: fit-content;
}
.kicker .dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
}
h1 {
  margin: 14px 0 10px;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.lead {
  margin: 0 0 18px;
  color: rgba(15,23,42,0.78);
  font-size: 16.5px;
  max-width: 60ch;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.hero-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: white;
  box-shadow: 0 1px 0 rgba(15,23,42,0.03);
  font-weight: 700;
  font-size: 13px;
  color: rgba(15,23,42,0.82);
}
.badge svg { width: 16px; height: 16px; color: var(--primary); }

.hero-card {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 18px;
}
.hero-card .card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hero-card .mini {
  font-size: 12px;
  color: rgba(15,23,42,0.70);
  font-weight: 700;
}
.hero-card .stat {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.metric {
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: 14px;
  padding: 12px;
  background: white;
}
.metric .label { font-size: 12px; color: rgba(15,23,42,0.70); font-weight: 800; }
.metric .value { font-size: 18px; font-weight: 900; margin-top: 4px; letter-spacing: -0.01em; }

/* Sections */
.section {
  padding: 54px 0;
}
.section.alt {
  background: var(--surface-2);
  border-top: 1px solid rgba(229,231,235,0.8);
  border-bottom: 1px solid rgba(229,231,235,0.8);
}
.section h2 {
  margin: 0 0 12px;
  font-size: 30px;
  letter-spacing: -0.01em;
}
.section p.sub {
  margin: 0 0 22px;
  color: rgba(15,23,42,0.72);
  max-width: 70ch;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 1px 0 rgba(15,23,42,0.03);
  padding: 18px;
}
.card strong { font-size: 16px; }
.card p { margin: 8px 0 0; color: rgba(15,23,42,0.72); }

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(37,99,235,0.10);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}
.icon svg { width: 22px; height: 22px; color: var(--primary); }

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pricing > a.price-card-link {
    display: block; /* να συμπεριφέρεται σαν grid item */
    width: 100%;
    height: 100%;
    text-decoration: none; /* φύγε underline */
    color: inherit; /* να μη μπλεδίζει */
}

.pricing > a.price-card-link:visited {
    color: inherit;
}

.pricing > a.price-card-link:hover,
.pricing > a.price-card-link:focus {
    text-decoration: none;
    outline: none;
}

.pricing > a.price-card-link .price-card {
    height: 100%; /* ίδια ύψη ανά γραμμή */
    cursor: pointer;
}

.price-card {
  border-radius: var(--radius);
  border: 1px solid rgba(229,231,235,0.9);
  background: white;
  padding: 18px;
  box-shadow: 0 1px 0 rgba(15,23,42,0.03);
  position: relative;
  overflow: hidden;
}
.price-card.featured {
  border-color: rgba(37,99,235,0.45);
  box-shadow: 0 18px 40px rgba(37,99,235,0.16);
}

.price-card {
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15,23,42,0.12);
    border-color: rgba(37,99,235,0.35);
}

.price-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.price-card-link:hover {
    text-decoration: none;
}

.price-card-link .price-card {
    height: 100%;
}

.ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(37,99,235,0.25);
  color: rgba(15,23,42,0.85);
  font-weight: 900;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
}
.plan {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.plan h3 {
  margin: 0;
  font-size: 18px;
}
.price {
  margin-top: 10px;
  font-size: 34px;
  letter-spacing: -0.03em;
  font-weight: 950;
}
.price small {
  font-size: 12px;
  font-weight: 800;
  color: rgba(15,23,42,0.70);
}
.ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}
.ul li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(15,23,42,0.78);
  font-weight: 650;
  font-size: 14px;
}
.ul svg { width: 18px; height: 18px; color: var(--primary); margin-top: 2px; }

.note {
  margin-top: 14px;
  color: rgba(15,23,42,0.70);
  font-size: 12.5px;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step {
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: var(--radius);
  background: white;
  padding: 16px;
}
.step .num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: white;
  background: var(--primary);
  margin-bottom: 10px;
}
.step strong { display: block; }
.step p { margin: 8px 0 0; color: rgba(15,23,42,0.72); }

/* Examples */
.examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.example {
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: var(--radius);
  background: white;
  padding: 18px;
  box-shadow: 0 1px 0 rgba(15,23,42,0.03);
  display: grid;
  gap: 12px;
}
.example .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.example .tag {
  font-size: 12px;
  font-weight: 900;
  color: rgba(15,23,42,0.70);
  background: rgba(15,23,42,0.04);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(229,231,235,0.8);
}
.example a.link {
  color: var(--primary);
  font-weight: 900;
}
.example a.link:hover { text-decoration: underline; }
.example p { margin: 0; color: rgba(15,23,42,0.72); }
.example .cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
details {
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: var(--radius);
  background: white;
  padding: 14px 16px;
}
summary {
  cursor: pointer;
  font-weight: 900;
}
details p {
  margin: 10px 0 0;
  color: rgba(15,23,42,0.72);
}

/* Footer */
.footer {
  padding: 34px 0;
  border-top: 1px solid rgba(229,231,235,0.85);
  background: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
  align-items: start;
}
.footer small { color: rgba(15,23,42,0.65); }
.footer a:hover { text-decoration: underline; }
.footer .muted { color: rgba(15,23,42,0.70); }

/* Mobile */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .examples { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(229,231,235,0.9);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: inline-flex; }
  .about-hero-grid { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .about-hero-copy .kicker { margin-inline: auto; }
  .about-display { margin-inline: auto; }
  .idea-orbit { width: min(300px, 78vw); }
  .about-story .container::before { left: 28px; }
  .story-row, .story-row-reverse { width: calc(100% - 58px); margin: 50px 0 72px 58px; }
  .story-row::after, .story-row-reverse::after { left: -42px; right: auto; }
  .story-row-reverse .story-icon { left: auto; right: 22px; }
  .parent-company-card { grid-template-columns: auto 1fr; padding: 26px; }
  .parent-company-arrow { grid-column: 2; }
  .parent-company-card::after { right: -18px; top: 26px; transform: none; font-size: 84px; }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-ring, .orbit-core, .orbit-icon, .about-marquee div, .finale-spark { animation: none !important; }
  .story-row { transition: none; }
}
