/* ==========================================================================
   Conceplanner
   Palette is taken from the app itself: the red of the icon and the pink of
   the hearts, on a very dark warm background.
   ========================================================================== */

:root {
  --red:        #ff2600;
  --pink:       #ff2d92;
  --flame:      linear-gradient(120deg, #ff2600 0%, #ff3d6e 50%, #ff2d92 100%);

  --ink:        #0a0608;
  --ink-2:      #100a0d;
  --line:       rgba(255, 255, 255, .09);
  --line-soft:  rgba(255, 255, 255, .06);

  --text:       #f6f1f3;
  --muted:      #a99ba1;
  --muted-2:    #8b7d84;

  --radius:     22px;
  --radius-sm:  14px;
  --wrap:       1160px;

  --shadow:     0 30px 70px -30px rgba(0, 0, 0, .9);
  --shadow-lg:  0 60px 120px -40px rgba(255, 38, 0, .35), 0 40px 80px -40px rgba(0, 0, 0, .9);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
          "Helvetica Neue", Arial, sans-serif;
}

/* --------------------------------------------------------------- base --- */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3 { margin: 0; line-height: 1.1; letter-spacing: -.025em; font-weight: 700; }

p { margin: 0 0 1em; }

ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 18px;
  background: var(--pink);
  color: #fff;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* Soft light behind everything, fixed so it never scrolls away. */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60rem 40rem at 78% -8%,  rgba(255, 45, 146, .22), transparent 62%),
    radial-gradient(52rem 36rem at 6%  6%,   rgba(255, 38, 0,  .18), transparent 60%),
    radial-gradient(70rem 50rem at 50% 108%, rgba(255, 38, 0,  .10), transparent 60%);
}

/* ------------------------------------------------------------- header --- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 6, 8, .72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 6px 18px -6px rgba(255, 38, 0, .8);
}

.brand-name { font-weight: 700; letter-spacing: -.02em; font-size: 1.05rem; }

.nav { display: flex; gap: 28px; font-size: .95rem; color: var(--muted); }
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--text); }

/* -------------------------------------------------------------- button --- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn-primary {
  background: var(--flame);
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(255, 45, 146, .9);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.08); }

.btn-sm { padding: 9px 18px; font-size: .9rem; }

/* --------------------------------------------------------------- hero --- */

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  padding: 7px 16px 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  font-size: .84rem;
  letter-spacing: .01em;
  color: var(--muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--flame);
  box-shadow: 0 0 0 4px rgba(255, 45, 146, .16);
}

.hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.15rem);
  letter-spacing: -.035em;
}

.gradient-text {
  background: var(--flame);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 24px 0 34px;
  max-width: 34em;
  font-size: 1.1rem;
  color: var(--muted);
}

/* ------------------------------------------------------------- badges --- */

/* Google ships its badge with clear space baked into the image, so the Apple
   badge gets a matching margin and a taller Google image keeps both the same
   visual height. */
.badges { display: flex; flex-wrap: wrap; align-items: center; }
.badges-center { justify-content: center; }

.badge-link { display: inline-flex; transition: transform .2s ease, filter .2s ease; }
.badge-link:hover { transform: translateY(-3px); filter: brightness(1.06); }

.badge-apple img { height: 52px; width: auto; margin: 13px; }
.badge-google img { height: 78px; width: auto; }

.badges-note {
  margin: 14px 0 0;
  padding-left: 13px;
  max-width: 30em;
  font-size: .92rem;
  color: var(--muted-2);
}

/* -------------------------------------------------------- hero visual --- */

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
}

.glow {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 146, .5), rgba(255, 38, 0, .18) 45%, transparent 68%);
  filter: blur(30px);
}

/* -------------------------------------------------------------- phone --- */

.phone {
  position: relative;
  width: 264px;
  padding: 9px;
  border-radius: 40px;
  background: linear-gradient(160deg, #3a3238, #131013 45%, #2c252a);
  box-shadow: var(--shadow-lg);
}

.phone::after {                     /* dynamic island */
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 33%;
  height: 11px;
  border-radius: 999px;
  background: #000;
  z-index: 2;
}

.phone-screen {
  overflow: hidden;
  border-radius: 32px;
  background: #000;
  aspect-ratio: 1290 / 2796;
}

.phone-screen img { width: 100%; height: 100%; object-fit: cover; }

.hero-visual .phone { position: absolute; }

.phone-main {
  z-index: 3;
  animation: float 7s ease-in-out infinite;
}

.phone-side {
  z-index: 1;
  width: 214px;
  opacity: .78;
  filter: saturate(.85);
}

.phone-left  { transform: translateX(-142px) translateY(30px) rotate(-10deg); }
.phone-right { transform: translateX(142px)  translateY(30px) rotate(10deg); }

@keyframes float {
  0%, 100% { transform: translateY(-10px); }
  50%      { transform: translateY(10px); }
}

/* --------------------------------------------------------------- stats --- */

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 72px;
  padding-top: 34px;
  border-top: 1px solid var(--line-soft);
}

.stats li {
  flex: 1 1 200px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.stats strong {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -.03em;
  background: var(--flame);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats span { color: var(--muted); font-size: .95rem; }

/* ------------------------------------------------------------ section --- */

.section { padding: 108px 0; }
.section-tight { padding: 64px 0; }

.kicker {
  margin: 0 0 14px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pink);
}

.section-title {
  max-width: 18em;
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
}

.section-lead {
  margin: 18px 0 0;
  max-width: 38em;
  color: var(--muted);
  font-size: 1.05rem;
}

/* -------------------------------------------------------------- cards --- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.card {
  padding: 30px 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease;
}

.card:hover { transform: translateY(-4px); border-color: rgba(255, 45, 146, .38); }

.card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 13px;
  background: var(--flame);
  color: #fff;
  box-shadow: 0 12px 26px -12px rgba(255, 45, 146, .9);
}

.card-icon svg { width: 24px; height: 24px; }

.card h3 { font-size: 1.15rem; margin-bottom: 10px; }

.card p { margin: 0; color: var(--muted); font-size: .98rem; }

.tag {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 45, 146, .45);
  background: rgba(255, 45, 146, .12);
  color: #ff8ec0;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* -------------------------------------------------------------- steps --- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.steps li { position: relative; padding-top: 26px; border-top: 1px solid var(--line); }

.step-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  border: 1px solid rgba(255, 45, 146, .4);
  color: #ff8ec0;
  font-size: .95rem;
  font-weight: 700;
}

.steps h3 { font-size: 1.08rem; margin-bottom: 8px; }
.steps p { margin: 0; color: var(--muted); font-size: .98rem; }

/* ------------------------------------------------------------ gallery --- */

.gallery {
  margin-top: 52px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.gallery::-webkit-scrollbar { display: none; }

.gallery-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 10px max(24px, calc((100vw - var(--wrap)) / 2 + 24px)) 20px;
}

.shot { margin: 0; scroll-snap-align: center; }

.phone-flat { width: 246px; transition: transform .3s ease; }
.shot:hover .phone-flat { transform: translateY(-6px); }

.shot figcaption {
  margin-top: 18px;
  text-align: center;
  font-size: .9rem;
  color: var(--muted-2);
}

/* -------------------------------------------------------------- plans --- */

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  margin-top: 52px;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 32px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .016));
  box-shadow: var(--shadow);
}

.plan-featured {
  border-color: rgba(255, 45, 146, .42);
  background:
    linear-gradient(180deg, rgba(255, 45, 146, .12), rgba(255, 255, 255, .02));
}

.plan-flag {
  position: absolute;
  top: -13px;
  left: 32px;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--flame);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px -12px rgba(255, 45, 146, 1);
}

.plan-head { margin-bottom: 24px; }
.plan-head h3 { font-size: 1.5rem; }
.plan-sub { margin: 8px 0 0; color: var(--muted-2); font-size: .93rem; }

.plan-price {
  margin: 16px 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.02em;
  background: var(--flame);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.plan-list { display: grid; gap: 12px; }

.plan-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.5;
}

.plan-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 22px;
  font-size: .8rem;
  font-weight: 700;
}

.plan-list .yes::before  { content: "\2713"; color: #4ad07a; }
.plan-list .plus::before { content: "\002B"; color: #ff8ec0; }
.plan-list .no::before   { content: "\00D7"; color: var(--muted-2); }

.plan-divider {
  margin: 26px 0 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.plan-cta { margin-top: auto; padding-top: 26px; align-self: flex-start; }
.plan-cta.badge-apple img { margin: 0 13px 0 0; }

.plans-note {
  margin: 32px 0 0;
  text-align: center;
  color: var(--muted-2);
  font-size: .95rem;
}

/* -------------------------------------------------------------- story --- */

.story-inner { max-width: 700px; margin-inline: auto; text-align: center; }
.story-inner .kicker,
.story-inner .section-title { margin-inline: auto; }
.story-inner .section-title { margin-bottom: 28px; }
.story-inner p:not([class]) { color: var(--muted); }

.story-question {
  margin-top: 32px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--text);
}

.story .badges { margin-top: 18px; }

/* ------------------------------------------------------------- notice --- */

.notice {
  padding: 34px 34px 26px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-sm);
  background: rgba(255, 38, 0, .05);
}

.notice h2 { font-size: 1.05rem; margin-bottom: 16px; }
.notice p { color: var(--muted-2); font-size: .92rem; line-height: 1.7; }
.notice p:last-child { margin-bottom: 0; }
.notice strong { color: var(--text); }

/* ------------------------------------------------------------- footer --- */

.site-footer {
  padding: 60px 0 44px;
  border-top: 1px solid var(--line-soft);
  background: var(--ink-2);
}

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

.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 12px; }
.footer-name { margin: 0; font-weight: 700; letter-spacing: -.02em; }
.footer-tag { margin: 2px 0 0; color: var(--muted-2); font-size: .9rem; }

.footer-links { display: flex; flex-wrap: wrap; gap: 26px; font-size: .95rem; color: var(--muted); }
.footer-links a { transition: color .2s ease; }
.footer-links a:hover { color: var(--text); }

.footer-legal {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.footer-legal p { margin: 0 0 6px; color: var(--muted-2); font-size: .8rem; }

/* --------------------------------------------------------- responsive --- */

@media (max-width: 980px) {
  .hero { padding-top: 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-copy { text-align: center; }
  .lead { margin-inline: auto; }
  .badges { justify-content: center; }
  .badges-note { margin-inline: auto; padding-left: 0; text-align: center; }
  .hero-visual { min-height: 540px; }
  .phone { width: 236px; }
  .phone-side { width: 190px; }
  .phone-left  { transform: translateX(-110px) translateY(24px) rotate(-9deg); }
  .phone-right { transform: translateX(110px)  translateY(24px) rotate(9deg); }
  .section-title, .section-lead { max-width: none; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav { display: none; }
  .section { padding: 76px 0; }
  .hero-visual { min-height: 480px; }
  .phone-side { display: none; }
  .stats { margin-top: 46px; gap: 22px; }
  .stats li { flex-basis: 100%; }
  .plan { padding: 30px 24px 26px; }
  .notice { padding: 26px 24px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .wrap { padding-inline: 18px; }
  .phone { width: 208px; }
  .badge-apple img { height: 42px; margin: 11px; }
  .badge-google img { height: 63px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
