/* ==========================================================
   Tanyag — styles
   Colors come straight from the logo: rust + leaf green.
   Change a color here and it updates everywhere.
   ========================================================== */
:root {
  --rust: #B84F28;
  --rust-dark: #963D1C;
  --rust-soft: #F4DED3;
  --leaf: #4E7A16;
  --leaf-dark: #3A5C0F;
  --leaf-soft: #E3ECD5;
  --sea: #2F7C84;
  --sand: #F6EEE3;
  --cream: #FFFBF6;
  --ink: #2B1E17;
  --muted: #6A5A4F;
  --line: #E7DACB;
  --white: #FFFFFF;
  --surface: #FFFFFF;       /* cards, panels */
  --accent: #B84F28;        /* rust used for text */
  --leaf-text: #4E7A16;     /* green used for text */
  --deep: #2B1E17;          /* dark bands: before/after, footer */
  --nav-bg: rgba(255, 251, 246, .88);

  --font-head: "Quicksand", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px -12px rgba(43, 30, 23, .25);
  --shadow-lg: 0 30px 60px -20px rgba(43, 30, 23, .35);
  --ease: cubic-bezier(.2, .8, .2, 1);
  color-scheme: light;
}

/* ---------- Dark mode ----------
   Follows the phone/computer setting, unless the visitor picks
   light or dark with the moon/sun button (saved in their browser). */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --cream: #17110D; --sand: #201712; --surface: #2A1F19; --ink: #F4EAE0; --muted: #C2B2A5; --line: #3D2F27;
    --rust-soft: #45261A; --leaf-soft: #27331B; --accent: #EC8B5E; --leaf-text: #A6CB6A; --leaf-dark: #C3E08F;
    --deep: #0E0A08; --nav-bg: rgba(23, 17, 13, .88);
    --shadow: 0 10px 30px -12px rgba(0, 0, 0, .6); --shadow-lg: 0 30px 60px -20px rgba(0, 0, 0, .7);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --cream: #17110D; --sand: #201712; --surface: #2A1F19; --ink: #F4EAE0; --muted: #C2B2A5; --line: #3D2F27;
  --rust-soft: #45261A; --leaf-soft: #27331B; --accent: #EC8B5E; --leaf-text: #A6CB6A; --leaf-dark: #C3E08F;
  --deep: #0E0A08; --nav-bg: rgba(23, 17, 13, .88);
  --shadow: 0 10px 30px -12px rgba(0, 0, 0, .6); --shadow-lg: 0 30px 60px -20px rgba(0, 0, 0, .7);
  color-scheme: dark;
}
/* Example-website mockups always stay light, like a real client site */
.phone, .ba {
  --cream: #FFFBF6; --sand: #F6EEE3; --surface: #FFFFFF; --ink: #2B1E17; --muted: #6A5A4F; --line: #E7DACB;
  --rust-soft: #F4DED3; --leaf-soft: #E3ECD5; --accent: #B84F28;
  color: var(--ink);
}
/* The bahay kubo turns to night-time in dark mode */
:root[data-theme="dark"] .kubo { background: linear-gradient(180deg, #14263A 0%, #2A2230 80%); }
:root[data-theme="dark"] .k-sun { fill: #F3E6C4; }
:root[data-theme="dark"] .k-ground { fill: #4F6A34; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .kubo { background: linear-gradient(180deg, #14263A 0%, #2A2230 80%); }
  :root:not([data-theme="light"]) .k-sun { fill: #F3E6C4; }
  :root:not([data-theme="light"]) .k-ground { fill: #4F6A34; }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 700; max-width: 22ch; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1em; }

.wrap { width: min(1160px, 100% - 32px); margin-inline: auto; }
.wrap--narrow { width: min(780px, 100% - 32px); }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--leaf); outline-offset: 3px; border-radius: 6px; }

.eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: .85rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--leaf-text);
  display: inline-flex; align-items: center; gap: .6em; margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow--light { color: #B9D58F; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 58ch; }
.hl { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  --bg: transparent; --fg: var(--ink); --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 48px; padding: .75em 1.4em; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  background: var(--bg); color: var(--fg); border: 2px solid var(--bd);
  text-decoration: none; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0) scale(.98); }
.btn--rust { --bg: var(--rust); --fg: #fff; }
.btn--rust:hover { --bg: var(--rust-dark); }
.btn--ghost { --bd: var(--ink); }
.btn--ghost:hover { --bg: var(--ink); --fg: var(--cream); }
.btn--light { --bg: #fff; --fg: var(--rust); }
.btn--outline-light { --bd: rgba(255,255,255,.8); --fg: #fff; }
.btn--outline-light:hover { --bg: #fff; --fg: var(--rust); }
.btn--sm { min-height: 42px; padding: .5em 1.1em; font-size: .95rem; }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background-color .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav.is-scrolled { background: var(--nav-bg); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); }
.nav__inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--accent); }
.brand img { width: 34px; height: auto; }
.brand--light { color: #fff; }
.brand--light img { filter: brightness(0) invert(1); }
.nav nav { margin-left: auto; }
.nav__links { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav__links a { display: block; padding: 8px 14px; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: .95rem; transition: background-color .2s; }
.nav__links a:hover { background: var(--rust-soft); }
.nav__toggle { display: none; }
.nav__links a[aria-current="page"] { background: var(--rust-soft); }
.theme-btn {
  width: 44px; height: 44px; flex: none; border-radius: 50%; border: 1px solid var(--line);
  background: var(--surface); color: var(--ink); cursor: pointer; display: grid; place-items: center;
  transition: transform .3s var(--ease), background-color .2s;
}
.theme-btn:hover { transform: rotate(-15deg) scale(1.06); }
.theme-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.theme-btn .i-sun { display: none; }
:root[data-theme="dark"] .theme-btn .i-sun { display: block; }
:root[data-theme="dark"] .theme-btn .i-moon { display: none; }
/* ---------- Hero ---------- */
.hero { position: relative; padding: 130px 0 40px; overflow: hidden; background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%); }
.hero__stripes {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background: repeating-linear-gradient(90deg, transparent 0 22px, rgba(78,122,22,.14) 22px 24px);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 78% 45%, #000 0%, transparent 70%);
          mask-image: radial-gradient(ellipse 60% 70% at 78% 45%, #000 0%, transparent 70%);
  animation: stripes 18s linear infinite;
}
@keyframes stripes { to { background-position: 240px 0; } }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; position: relative; }
.hero h1 { margin-bottom: .4em; }
/* Headline is always 3 lines: "Help your" / rotating word / "get found online." */
.h1-line { display: block; }
.rotator { display: table; white-space: nowrap; color: var(--accent); position: relative; }
.rotator span { display: inline-block; transition: transform .45s var(--ease), opacity .45s var(--ease); }
.rotator span.out { transform: translateY(-60%); opacity: 0; }
.rotator span.in { transform: translateY(60%); opacity: 0; transition: none; }
.rotator::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .05em; height: .14em;
  background: var(--leaf); border-radius: 4px; opacity: .35; transform-origin: left;
  animation: underline 2.6s var(--ease) infinite;
}
@keyframes underline { 0% { transform: scaleX(0); } 30%, 80% { transform: scaleX(1); } 100% { transform: scaleX(0); transform-origin: right; } }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.6rem 0 1.4rem; }
.hero__ticks { display: flex; flex-wrap: wrap; gap: 8px 22px; list-style: none; padding: 0; margin: 0; color: var(--muted); font-weight: 600; font-size: .95rem; }
.hero__ticks li { display: inline-flex; align-items: center; gap: 6px; }
.hero__ticks svg { width: 20px; height: 20px; fill: none; stroke: var(--leaf); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }

.hero__art { position: relative; aspect-ratio: 1; max-width: 480px; justify-self: center; width: 100%; }
.ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 40s linear infinite; }
.ring text { font-family: var(--font-head); font-weight: 700; font-size: 17px; letter-spacing: 3px; fill: var(--rust); opacity: .55; text-transform: uppercase; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero__logo {
  position: absolute; inset: 14%; border-radius: 50%; background: #fff;
  box-shadow: var(--shadow-lg); display: grid; place-items: center; overflow: hidden;
  animation: float 6s ease-in-out infinite;
}
.hero__logo img { width: 74%; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.chip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); padding: 10px 14px; border-radius: 999px; box-shadow: var(--shadow);
  font-weight: 700; font-size: .9rem; white-space: nowrap;
  animation: float 5s ease-in-out infinite;
}
.chip svg { width: 20px; height: 20px; fill: none; stroke: var(--rust); stroke-width: 2; stroke-linejoin: round; }
.chip--a { top: 10%; left: -6%; animation-delay: -1s; }
.chip--b { top: 48%; right: -8%; animation-delay: -2.5s; }
.chip--c { bottom: 6%; left: 4%; animation-delay: -4s; }
.chip--c svg { stroke: var(--leaf); }

.marquee { margin-top: 70px; background: var(--rust); color: #fff; overflow: hidden; padding: 16px 0; transform: rotate(-1.2deg) scale(1.02); }
.marquee__track { display: flex; align-items: center; gap: 28px; width: max-content; animation: marquee 30s linear infinite; font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; letter-spacing: .04em; }
.marquee__track i { width: 10px; height: 10px; background: #B9D58F; border-radius: 50%; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 10vw, 120px) 0; position: relative; }
.section--sand { background: var(--sand); }
.section--dark { background: var(--deep); color: #F6EEE3; }
.section--dark .lead { color: #CDBFB2; }

.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card p { color: var(--muted); margin: 0; }
.card__icon { width: 54px; height: 54px; border-radius: 16px; background: var(--rust-soft); display: grid; place-items: center; margin-bottom: 18px; transition: transform .4s var(--ease); }
.card:hover .card__icon { transform: rotate(-8deg) scale(1.08); }
.card__icon svg { width: 28px; height: 28px; fill: none; stroke: var(--rust); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card:nth-child(2) .card__icon { background: var(--leaf-soft); }
.card:nth-child(2) .card__icon svg { stroke: var(--leaf); }

/* ---------- Learn (bahay kubo) ---------- */
.learn { display: grid; grid-template-columns: 300px 1fr; gap: 28px; margin-top: 40px; align-items: start; }
.learn__tabs { display: grid; gap: 10px; }
.ltab {
  display: flex; align-items: center; gap: 14px; text-align: left; width: 100%;
  background: var(--surface); border: 2px solid transparent; border-radius: var(--radius-sm);
  padding: 14px 16px; cursor: pointer; font: inherit; color: var(--ink);
  transition: border-color .25s, transform .25s var(--ease), box-shadow .25s;
}
.ltab:hover { transform: translateX(4px); }
.ltab[aria-selected="true"] { border-color: var(--rust); box-shadow: var(--shadow); }
.ltab__num { width: 36px; height: 36px; flex: none; border-radius: 50%; background: var(--sand); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; transition: background-color .25s, color .25s; }
.ltab[aria-selected="true"] .ltab__num { background: var(--rust); color: #fff; }
.ltab strong { display: block; font-family: var(--font-head); font-size: 1.1rem; }
.ltab em { font-style: normal; color: var(--muted); font-size: .92rem; }

.learn__stage { background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.kubo { display: block; width: 100%; height: auto; background: linear-gradient(180deg, #DCEEF0 0%, #F7F1E6 80%); }
.k-sun { fill: #F2C14E; animation: pulse 4s ease-in-out infinite; transform-origin: 360px 52px; }
@keyframes pulse { 50% { transform: scale(1.08); } }
.k-palm path { fill: none; stroke: #5B4636; stroke-width: 5; stroke-linecap: round; }
.k-palm .k-leaf { fill: var(--leaf); stroke: none; }
.k-palm { transform-origin: 392px 250px; animation: sway 5s ease-in-out infinite; }
@keyframes sway { 50% { transform: rotate(2deg); } }
.k-ground { fill: #9DBB6A; }
.k-road { fill: none; stroke: #C9B79F; stroke-width: 14; stroke-linecap: round; }
.k-pole { fill: #7A5A40; }
.k-signboard { fill: var(--sea); }
.k-signtext { fill: #fff; font: 700 12px var(--font-head); }
.k-visitor { fill: var(--ink); stroke: var(--ink); stroke-width: 3; stroke-linecap: round; opacity: 0; transform: translate(10px, 282px); }
.k-stilt { fill: #7A5A40; }
.k-wall { fill: #E3C28E; stroke: #B38A55; stroke-width: 2; }
.k-wallline { stroke: #C9A36C; stroke-width: 1.5; }
.k-roof { fill: #A87A3F; stroke: #7E5829; stroke-width: 2; stroke-linejoin: round; }
.k-roofline { fill: none; stroke: #8C6330; stroke-width: 1.5; }
.k-door { fill: #8C6330; }
.k-ladder { fill: none; stroke: #7A5A40; stroke-width: 3; stroke-linecap: round; }
.k-window { fill: #FFFBF6; stroke: #7E5829; stroke-width: 3; }
.k-item { fill: var(--rust); }
.k-itemline { stroke: var(--muted); stroke-width: 3; stroke-linecap: round; }
.k-item2 { fill: var(--leaf); }
.k-plate { fill: #fff; stroke: var(--rust); stroke-width: 2.5; }
.k-platetext { fill: var(--rust); font: 700 13px var(--font-head); }

.kpart { transition: opacity .45s var(--ease), filter .45s var(--ease); }
.kubo[data-active] .kpart { opacity: .28; filter: grayscale(.7); }
.kubo[data-active="domain"] .kpart[data-part="domain"],
.kubo[data-active="hosting"] .kpart[data-part="hosting"],
.kubo[data-active="website"] .kpart[data-part="website"],
.kubo[data-active="dns"] .kpart[data-part="dns"] { opacity: 1; filter: drop-shadow(0 0 10px rgba(184,79,40,.45)); }
.kubo[data-active="website"] .kpart[data-part="hosting"] { opacity: .6; }
.kubo[data-active="domain"] .kpart[data-part="domain"] { animation: bob 1.6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes bob { 50% { transform: translateY(-4px); } }
.kubo[data-active="dns"] .k-visitor { opacity: 1; animation: walk 3.2s var(--ease) infinite; }
@keyframes walk {
  0% { transform: translate(10px, 282px); opacity: 0; }
  10% { opacity: 1; }
  85% { transform: translate(180px, 258px); opacity: 1; }
  100% { transform: translate(190px, 256px); opacity: 0; }
}
.kubo[data-active="website"] .k-item,
.kubo[data-active="website"] .k-item2 { animation: pop 1.8s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes pop { 50% { transform: scale(1.1); } }

.learn__panel { padding: 26px 30px 30px; }
.learn__panel h3 { font-size: 1.45rem; color: var(--accent); }
.learn__panel p { color: var(--muted); }
.learn__tip { background: var(--leaf-soft); color: var(--leaf-dark) !important; border-radius: var(--radius-sm); padding: 12px 16px; margin: 0; font-size: .97rem; }
.learn__panel.swap { animation: fadeUp .45s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- Build (phone) ---------- */
.build { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: center; }
.toggles { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0; }
.tgl {
  display: inline-flex; align-items: center; gap: 10px; min-height: 46px;
  padding: 8px 16px 8px 10px; border-radius: 999px; cursor: pointer;
  background: var(--surface); border: 2px solid var(--line); font: 600 .97rem var(--font-body); color: var(--ink);
  transition: border-color .25s, background-color .25s, transform .2s var(--ease);
}
.tgl:hover { transform: translateY(-2px); }
.tgl__sw { width: 36px; height: 22px; border-radius: 999px; background: var(--line); position: relative; transition: background-color .25s; flex: none; }
.tgl__sw::after { content: ""; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.2); transition: transform .3s var(--ease); }
.tgl[aria-pressed="true"] { border-color: var(--leaf); background: var(--leaf-soft); }
.tgl[aria-pressed="true"] .tgl__sw { background: var(--leaf); }
.tgl[aria-pressed="true"] .tgl__sw::after { transform: translateX(14px); }

.meter { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.meter__top { display: flex; justify-content: space-between; gap: 12px; font-weight: 600; margin-bottom: 10px; }
.meter__top strong { font-family: var(--font-head); font-size: 1.3rem; color: var(--accent); }
.meter__bar { height: 12px; background: var(--sand); border-radius: 999px; overflow: hidden; }
.meter__fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--rust), #D9894F, var(--leaf)); background-size: 360px 100%; transition: width .6s var(--ease); }
.meter__msg { margin: 10px 0 0; color: var(--muted); font-size: .95rem; }

.phone-wrap { justify-self: center; perspective: 1200px; overflow-anchor: none; }
.phone-wrap * { overflow-anchor: none; }
.phone {
  position: relative; width: 300px; height: 610px; border-radius: 46px; background: #1E1612;
  padding: 14px; box-shadow: var(--shadow-lg), inset 0 0 0 2px #3B2E26;
  transform: rotateY(-10deg) rotateX(4deg); transition: transform .6s var(--ease);
}
.phone:hover { transform: rotateY(0) rotateX(0); }
.phone__notch { position: absolute; top: 22px; left: 50%; width: 90px; height: 24px; background: #1E1612; border-radius: 999px; transform: translateX(-50%); z-index: 3; }
.phone__screen { height: 100%; border-radius: 34px; background: var(--cream); overflow-y: auto; overflow-x: hidden; scrollbar-width: none; padding-bottom: 80px; }
.phone__screen::-webkit-scrollbar { display: none; }
.ps-bar { display: flex; justify-content: space-between; align-items: center; padding: 50px 18px 12px; }
.ps-logo { font-family: var(--font-head); font-weight: 700; color: var(--rust); }
.ps-burger { width: 20px; height: 12px; border-block: 2px solid var(--ink); position: relative; }
.ps-burger::after { content: ""; position: absolute; left: 0; right: 0; top: 3px; height: 2px; background: var(--ink); }

.pblock { display: grid; grid-template-rows: 0fr; opacity: 0; transform: translateY(12px) scale(.97); transition: grid-template-rows .5s var(--ease), opacity .4s var(--ease), transform .5s var(--ease); }
.pblock > div { overflow: hidden; }
.pblock[data-on="true"] { grid-template-rows: 1fr; opacity: 1; transform: none; }
.ps-hero { margin: 0 12px 12px; border-radius: 20px; height: 180px; position: relative; overflow: hidden; background: linear-gradient(160deg, #F2A65A 0%, var(--rust) 60%, #6E2C14 100%); color: #fff; padding: 16px; display: flex; flex-direction: column; justify-content: flex-end; }
.ps-hero__sun { position: absolute; width: 70px; height: 70px; border-radius: 50%; background: #FFD98A; top: 20px; right: 24px; opacity: .9; }
.ps-hero__cup { position: absolute; width: 46px; height: 38px; background: #fff; border-radius: 0 0 16px 16px; top: 56px; left: 22px; opacity: .9; }
.ps-hero__cup::after { content: ""; position: absolute; right: -12px; top: 8px; width: 12px; height: 16px; border: 4px solid #fff; border-left: 0; border-radius: 0 10px 10px 0; }
.ps-hero__t { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; margin: 0; line-height: 1.2; position: relative; }
.ps-hero__s { font-size: .78rem; margin: 2px 0 0; opacity: .9; position: relative; }
.ps-sec { margin: 0 12px 12px; background: #fff; border-radius: 16px; padding: 14px; border: 1px solid var(--line); }
.ps-h { font-family: var(--font-head); font-weight: 700; margin: 0 0 8px; font-size: .95rem; }
.ps-row { display: flex; justify-content: space-between; font-size: .82rem; padding: 5px 0; border-bottom: 1px dashed var(--line); }
.ps-row:last-of-type { border-bottom: 0; }
.ps-row b { color: var(--rust); }
.ps-gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.ps-gal i { aspect-ratio: 1; border-radius: 8px; background: var(--rust-soft); }
.ps-gal i:nth-child(2n) { background: var(--leaf-soft); }
.ps-gal i:nth-child(3n) { background: #F2C98E; }
.ps-open { display: flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 700; color: var(--leaf); margin: 8px 0 0; }
.ps-open i { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); animation: blink 1.4s infinite; }
@keyframes blink { 50% { opacity: .3; } }
.ps-map { height: 110px; border-radius: 10px; position: relative; background:
  linear-gradient(90deg, transparent 46%, #fff 46% 50%, transparent 50%),
  linear-gradient(0deg, transparent 58%, #fff 58% 62%, transparent 62%),
  linear-gradient(30deg, transparent 70%, #BFD8DB 70%),
  #E4EDD6; }
.ps-pin { position: absolute; left: 47%; top: 30%; width: 22px; height: 22px; background: var(--rust); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); animation: drop 1.6s var(--ease) infinite; }
.ps-pin::after { content: ""; position: absolute; inset: 6px; background: #fff; border-radius: 50%; }
@keyframes drop { 0%, 100% { translate: 0 0; } 50% { translate: 0 -6px; } }
.ps-empty { text-align: center; color: var(--muted); font-size: .85rem; padding: 40px 20px; display: none; }
.ps-empty.show { display: block; }
.pblock--float { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; }
.ps-actions { display: flex; gap: 8px; padding: 12px; background: rgba(255,251,246,.95); border-radius: 0 0 34px 34px; box-shadow: 0 -6px 20px rgba(0,0,0,.08); }
.ps-btn { flex: 1; text-align: center; padding: 10px; border-radius: 999px; font-weight: 700; font-size: .85rem; color: #fff; }
.ps-btn--call { background: var(--leaf); }
.ps-btn--msg { background: #1877F2; }

/* ---------- Before / after ---------- */
.ba { position: relative; margin-top: 40px; height: 440px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); user-select: none; }
.ba__side { position: absolute; inset: 0; display: grid; place-items: center; padding: 20px; }
.ba__before { background: #E9EBEE; }
.ba__after { background: linear-gradient(135deg, var(--sand), #fff); clip-path: inset(0 0 0 var(--pos)); }
.ba__label { position: absolute; top: 16px; left: 16px; background: rgba(0,0,0,.65); color: #fff; font-weight: 700; font-size: .85rem; padding: 6px 12px; border-radius: 999px; }
.ba__label--r { left: auto; right: 16px; background: var(--rust); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 4px; background: #fff; transform: translateX(-50%); pointer-events: none; }
.ba__handle span { position: absolute; top: 50%; left: 50%; width: 48px; height: 48px; border-radius: 50%; background: #fff; transform: translate(-50%, -50%); box-shadow: var(--shadow); }
.ba__handle span::before, .ba__handle span::after { content: ""; position: absolute; top: 50%; width: 0; height: 0; border: 7px solid transparent; transform: translateY(-50%); }
.ba__handle span::before { left: 6px; border-right-color: var(--rust); }
.ba__handle span::after { right: 6px; border-left-color: var(--rust); }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.ba__range:focus-visible + .ba__handle, .ba:focus-within .ba__handle span { outline: 3px solid var(--leaf); }

.fb { width: min(340px, 100%); color: #1C1E21; }
.fb__post { background: #fff; border-radius: 10px; padding: 12px; box-shadow: 0 1px 3px rgba(0,0,0,.15); }
.fb__head { display: flex; gap: 8px; align-items: center; margin-bottom: 10px; }
.fb__head i { width: 34px; height: 34px; border-radius: 50%; background: var(--rust); }
.fb__head b { display: block; font-size: .9rem; }
.fb__head small { color: #65676B; font-size: .75rem; }
.fb__img { height: 120px; background: linear-gradient(160deg, #F2A65A, var(--rust)); border-radius: 6px; margin-bottom: 10px; filter: saturate(.6); }
.fb__c { display: flex; gap: 6px; align-items: center; margin-top: 6px; }
.fb__c i { width: 22px; height: 22px; border-radius: 50%; background: #CED0D4; flex: none; }
.fb__c p { margin: 0; background: #F0F2F5; padding: 5px 10px; border-radius: 14px; font-size: .82rem; }
.site { width: min(380px, 100%); background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); color: var(--ink); }
.site__hero { background: linear-gradient(160deg, #F2A65A 0%, var(--rust) 70%); color: #fff; padding: 22px 18px; display: grid; gap: 2px; }
.site__hero b { font-family: var(--font-head); font-size: 1.4rem; }
.site__hero small { opacity: .9; }
.site__cta { justify-self: start; margin-top: 10px; background: #fff; color: var(--rust); font-weight: 700; font-size: .8rem; padding: 6px 14px; border-radius: 999px; }
.site__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px; }
.site__grid > div { background: var(--sand); border-radius: 10px; padding: 10px; font-size: .82rem; }
.site__grid em { font-style: normal; font-family: var(--font-head); font-weight: 700; color: var(--rust); display: block; margin-bottom: 2px; }
.site__grid p { margin: 0; }
.site__map { background: linear-gradient(90deg, transparent 46%, #fff 46% 52%, transparent 52%), linear-gradient(0deg, transparent 50%, #fff 50% 56%, transparent 56%), #E4EDD6 !important; min-height: 70px; }

/* ---------- Packages ---------- */
.pk { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; align-items: stretch; }
.pkcard { position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: transform .35s var(--ease), box-shadow .35s var(--ease); transform-style: preserve-3d; }
.pkcard:hover { box-shadow: var(--shadow-lg); }
.pkcard h3 { font-size: 1.6rem; margin-bottom: .2em; }
.pkcard__for { color: var(--muted); }
.pkcard ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; flex: 1; }
.pkcard li { position: relative; padding-left: 28px; }
.pkcard li::before { content: ""; position: absolute; left: 0; top: .35em; width: 18px; height: 18px; border-radius: 50%; background: var(--leaf-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12.5l4 4L18 8' fill='none' stroke='%234E7A16' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat; }
.pkcard__pay { font-family: var(--font-head); font-weight: 700; color: var(--accent); border-top: 1px dashed var(--line); padding-top: 16px; }
.pkcard--feat { background: var(--rust); color: #fff; border-color: var(--rust); }
.pkcard--feat .pkcard__for { color: #F8D9CB; }
.pkcard--feat .pkcard__pay { color: #fff; border-color: rgba(255,255,255,.3); }
.pkcard--feat li::before { background-color: rgba(255,255,255,.95); }
.pkcard__badge { position: absolute; top: -14px; right: 24px; background: var(--leaf); color: #fff; font-weight: 700; font-size: .8rem; padding: 6px 14px; border-radius: 999px; }
.launch { display: flex; gap: 14px; align-items: center; margin-top: 28px; background: var(--leaf-soft); border-radius: var(--radius); padding: 18px 22px; }
.launch svg { width: 30px; height: 30px; flex: none; fill: var(--leaf); animation: spin 8s linear infinite; }
.launch p { margin: 0; color: var(--leaf-dark); }

/* ---------- Process ---------- */
.steps { list-style: none; padding: 0; margin: 44px 0 0; display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; position: relative; }
.steps::before { content: ""; position: absolute; top: 24px; left: 4%; right: 4%; height: 3px; background: var(--line); border-radius: 3px; }
.steps::after { content: ""; position: absolute; top: 24px; left: 4%; height: 3px; width: calc(92% * var(--progress, 0)); background: var(--rust); border-radius: 3px; transition: width .2s linear; }
.step { position: relative; z-index: 1; text-align: center; }
.step__n { width: 50px; height: 50px; margin: 0 auto 14px; border-radius: 50%; background: var(--surface); border: 3px solid var(--line); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; transition: background-color .4s, border-color .4s, color .4s, transform .4s var(--ease); }
.step.is-done .step__n { background: var(--rust); border-color: var(--rust); color: #fff; transform: scale(1.08); }
.step h3 { font-size: 1.05rem; margin-bottom: .3em; }
.step p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---------- Quiz ---------- */
.quiz { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.quiz__card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); min-height: 300px; text-align: center; }
.quiz__progress { height: 6px; background: var(--sand); border-radius: 999px; overflow: hidden; margin-bottom: 26px; }
.quiz__progress div { height: 100%; width: 0; background: var(--leaf); transition: width .4s var(--ease); }
.quiz__count { color: var(--muted); font-weight: 600; font-size: .9rem; margin-bottom: .6em; }
.quiz__q { font-family: var(--font-head); font-weight: 700; font-size: 1.45rem; line-height: 1.3; min-height: 3.9em; display: grid; place-items: center; }
.quiz__q.swap { animation: fadeUp .4s var(--ease); }
.quiz__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.quiz__btns .btn { min-width: 130px; }
.score { position: relative; width: 120px; height: 120px; margin: 0 auto 16px; }
.score svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.score circle { fill: none; stroke-width: 10; stroke-linecap: round; }
.score__bg { stroke: var(--sand); }
.score__fg { stroke: var(--rust); stroke-dasharray: 327; stroke-dashoffset: 327; transition: stroke-dashoffset 1s var(--ease); }
.score span { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; }
#quizResult h3 { color: var(--accent); font-size: 1.4rem; }
#quizResult p { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { margin-top: 36px; display: grid; gap: 12px; }
.faq details { background: var(--surface); border-radius: var(--radius-sm); border: 1px solid var(--line); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 18px 56px 18px 22px; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; position: relative; min-height: 44px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 22px; top: 50%; width: 12px; height: 12px; border-right: 2.5px solid var(--rust); border-bottom: 2.5px solid var(--rust); transform: translateY(-70%) rotate(45deg); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details p { padding: 0 22px 20px; margin: 0; color: var(--muted); }
.faq details[open] p { animation: fadeUp .35s var(--ease); }

/* ---------- CTA + footer ---------- */
.cta { position: relative; background: var(--rust); color: #fff; padding: clamp(80px, 11vw, 130px) 0; text-align: center; overflow: hidden; }
.cta__stripes { position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0 26px, rgba(255,255,255,.07) 26px 28px); animation: stripes 22s linear infinite; }
.cta__inner { position: relative; display: grid; justify-items: center; }
.cta__icon { width: 80px; filter: brightness(0) invert(1); margin-bottom: 20px; animation: float 5s ease-in-out infinite; }
.cta h2 { max-width: 20ch; margin-inline: auto; }
.cta p { max-width: 54ch; color: #FBE3D8; font-size: 1.15rem; }
.cta__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }
.footer { background: var(--deep); color: #CDBFB2; padding: 40px 0; }
.footer__inner { display: grid; gap: 8px; justify-items: center; text-align: center; }
.footer p { margin: 0; }
.footer__small { font-size: .85rem; opacity: .7; }
.footer__links a { color: #F6EEE3; text-underline-offset: 3px; }
.footer__links a:hover { color: #EC8B5E; }

/* ==========================================================
   About page
   ========================================================== */
.ahero { position: relative; padding: 140px 0 90px; overflow: hidden; background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%); }
.ahero__grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; }
.ahero h1 { max-width: 14ch; }

.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tile {
  aspect-ratio: 1; border-radius: 24px; display: grid; place-items: center; align-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; color: #fff; box-shadow: var(--shadow);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), opacity .7s var(--ease);
}
.tile svg { width: 56px; height: 56px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.tile.is-in { animation: float 6s ease-in-out infinite; }
.tile:nth-child(2).is-in { animation-delay: -1.5s; }
.tile:nth-child(3).is-in { animation-delay: -3s; }
.tile:nth-child(4).is-in { animation-delay: -4.5s; }
.tile:hover { box-shadow: var(--shadow-lg); }
.tile--food { background: linear-gradient(150deg, #D9894F, var(--rust)); }
.tile--beach { background: linear-gradient(150deg, #4FA3AB, var(--sea)); }
.tile--fest { background: linear-gradient(150deg, #E3A93B, #B9761B); }
.tile--people { background: linear-gradient(150deg, #72A035, var(--leaf)); }
.tile--beach, .tile--people { translate: 0 28px; } /* staggered grid */

.mv { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mvcard { position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), opacity .7s var(--ease); }
.mvcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.mvcard p { color: var(--muted); }
.mvcard .eyebrow { color: var(--leaf-text); margin-bottom: .6rem; }
.mvcard__big { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.3rem, 2.2vw, 1.6rem); line-height: 1.3; color: var(--ink) !important; }
.mvcard__icon { width: 56px; height: 56px; border-radius: 16px; background: var(--rust-soft); display: grid; place-items: center; margin-bottom: 20px; }
.mvcard__icon svg { width: 30px; height: 30px; fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mvcard--vision .mvcard__icon { background: var(--leaf-soft); }
.mvcard--vision .mvcard__icon svg { stroke: var(--leaf-text); }
.mvcard.is-in .mvcard__icon svg { animation: spin 14s linear infinite; }
.mvcard--vision.is-in .mvcard__icon svg { animation: pulse 3s ease-in-out infinite; }
/* "Rise together" bars grow when the card appears */
.rise { display: flex; align-items: flex-end; gap: 10px; height: 90px; margin-top: 10px; }
.rise i { flex: 1; border-radius: 8px 8px 3px 3px; background: linear-gradient(0deg, var(--leaf), #9CC25E); height: 8%; transition: height 1.1s var(--ease); }
.mvcard.is-in .rise i { height: var(--h); }
.rise i:nth-child(1) { --h: 35%; transition-delay: .2s; }
.rise i:nth-child(2) { --h: 50%; transition-delay: .3s; }
.rise i:nth-child(3) { --h: 62%; transition-delay: .4s; }
.rise i:nth-child(4) { --h: 75%; transition-delay: .5s; }
.rise i:nth-child(5) { --h: 88%; transition-delay: .6s; }
.rise i:nth-child(6) { --h: 100%; transition-delay: .7s; background: linear-gradient(0deg, var(--rust), #E0874F); }

.founder { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: start; }
.founder__photo { position: sticky; top: 110px; display: grid; justify-items: center; gap: 18px; }
.founder__frame {
  width: 100%; aspect-ratio: 4 / 5; border-radius: 28px; overflow: hidden; display: grid; place-items: center;
  background: repeating-linear-gradient(90deg, transparent 0 20px, rgba(255,255,255,.08) 20px 22px), linear-gradient(160deg, #D9894F, var(--rust) 55%, #6E2C14);
  box-shadow: var(--shadow-lg);
}
.founder__frame img { width: 40%; filter: brightness(0) invert(1); animation: float 6s ease-in-out infinite; }
.founder__frame > img[src*="founder"] { width: 100%; height: 100%; object-fit: cover; filter: none; animation: none; }
.founder__pin { display: inline-flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--line); padding: 10px 16px; border-radius: 999px; font-weight: 700; font-size: .95rem; box-shadow: var(--shadow); }
.founder__pin svg { width: 20px; height: 20px; fill: none; stroke: var(--accent); stroke-width: 2; animation: drop 1.8s var(--ease) infinite; }
.founder__copy h2 { margin-bottom: .1em; }
.founder__role { font-family: var(--font-head); font-weight: 700; color: var(--accent); font-size: 1.15rem; margin-bottom: 1.4em; }
.founder__copy > p { font-size: 1.1rem; }
.founder__copy strong { color: var(--accent); }

.define { margin-top: 30px; background: var(--surface); border-left: 5px solid var(--rust); border-radius: 0 var(--radius) var(--radius) 0; padding: 24px 28px; box-shadow: var(--shadow); }
.define__word { font-family: var(--font-head); font-weight: 700; font-size: 2.2rem; color: var(--accent); margin: 0; line-height: 1.1; }
.define__pos { font-style: italic; color: var(--muted); margin: 2px 0 12px; }
.define__mean { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; margin: 0; }
.define__mean span { background: linear-gradient(transparent 62%, var(--leaf-soft) 62%) no-repeat; background-size: 0% 100%; transition: background-size 1s var(--ease) .5s; }
.define__mean span + span { transition-delay: 1.1s; }
.define.is-in .define__mean span { background-size: 100% 100%; }

@media (max-width: 900px) {
  .ahero { padding: 110px 0 70px; }
  .ahero__grid, .mv, .founder { grid-template-columns: 1fr; }
  .tiles { max-width: 420px; }
  .founder__photo { position: static; max-width: 340px; justify-self: center; width: 100%; }
}
@media (max-width: 520px) {
  .mvcard { padding: 26px 22px; }
  .tile svg { width: 44px; height: 44px; }
  .tile { font-size: .95rem; border-radius: 20px; }
  .define__word { font-size: 1.8rem; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0s); }
.reveal:where(.is-in) { opacity: 1; transform: none; } /* low priority so hover effects still work */

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .steps { grid-template-columns: 1fr; gap: 0; max-width: 520px; }
  .steps::before, .steps::after { top: 0; bottom: 0; left: 24px; right: auto; width: 3px; height: auto; }
  .steps::after { height: calc(100% * var(--progress, 0)); width: 3px; bottom: auto; }
  .step { display: flex; gap: 18px; text-align: left; padding-bottom: 26px; }
  .step__n { margin: 0; flex: none; }
}
/* Menu button replaces the link row below 1080px */
@media (max-width: 1080px) {
  .chip--b { right: 0; }
  .nav__inner { gap: 10px; }
  .nav__links {
    position: fixed; top: 72px; left: 16px; right: 16px; flex-direction: column; gap: 4px;
    background: var(--cream); padding: 12px; border-radius: var(--radius); box-shadow: var(--shadow-lg);
    opacity: 0; transform: translateY(-10px); pointer-events: none; transition: opacity .25s, transform .25s var(--ease);
  }
  .nav__links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a { padding: 12px 16px; }
  .nav nav { margin-left: 0; }
  .theme-btn { margin-left: auto; }
  .nav__toggle { display: grid; gap: 5px; place-content: center; width: 46px; height: 46px; border-radius: 12px; border: 0; background: transparent; cursor: pointer; }
  .nav__toggle span { width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}
@media (max-width: 900px) {
  .hero { padding-top: 110px; padding-bottom: 32px; }
  .hero__grid, .build, .quiz, .learn { grid-template-columns: 1fr; }
  .hero__art { max-width: 380px; margin-top: 10px; }
  .cards3, .pk { grid-template-columns: 1fr; }
  .learn__tabs { grid-template-columns: 1fr 1fr; }
  .phone { transform: none; }
  .pk { gap: 30px; }
  /* On phones, show the preview right under the intro so changes are visible */
  .build { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .build__copy { display: contents; }
  .phone-wrap { order: 1; margin: 8px 0 4px; align-self: center; }
  .toggles { order: 2; }
  .meter { order: 3; }
}
@media (max-width: 520px) {
  body { font-size: 1rem; }
  .hero h1 { font-size: 10vw; } /* keeps "pasalubong store" on one line on small phones */
  .nav__cta { display: none; }
  .chip { font-size: .8rem; padding: 8px 11px; }
  .chip--a { left: 0; }
  .chip--b { right: 0; }
  .learn__tabs { grid-template-columns: 1fr; }
  .ltab { padding: 10px 12px; }
  .learn__panel { padding: 20px; }
  .ba { height: 480px; }
  .phone { width: 250px; height: 480px; border-radius: 40px; }
  .phone__screen { border-radius: 28px; }
  .ps-actions { border-radius: 0 0 28px 28px; }
  .quiz__card { padding: 24px 18px; }
}

/* Respect people who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
