:root {
  --paper: #f4f5ef;
  --paper-soft: #ecefe6;
  --ink: #151914;
  --muted: #626a60;
  --line: rgba(21, 25, 20, .15);
  --acid: #dafa57;
  --violet: #6c5ce7;
  --orange: #ff7158;
  --blue: #80d8ff;
  --green: #8ee9b2;
  --white: #fffef9;
  --radius-lg: 34px;
  --radius-md: 24px;
  --shadow: 0 24px 70px rgba(24, 33, 20, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 6%, rgba(218, 250, 87, .22), transparent 25rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--ink); color: white; padding: 12px 18px; border-radius: 12px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 40px), 1240px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 18px;
  border: 1px solid transparent;
  border-radius: 18px;
  transition: background .3s, border .3s, box-shadow .3s;
}
.site-header.is-scrolled { background: rgba(255, 254, 249, .82); border-color: var(--line); box-shadow: 0 10px 30px rgba(21,25,20,.08); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: 17px; font-weight: 830; letter-spacing: -.04em; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 11px; background: var(--ink); color: var(--acid); font-size: 19px; font-weight: 900; letter-spacing: -.08em; }
.main-nav { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 650; }
.main-nav a { padding: 10px 14px; border-radius: 12px; text-decoration: none; transition: background .2s, color .2s; }
.main-nav a:hover { background: rgba(21,25,20,.07); }
.main-nav .nav-contact { margin-left: 6px; padding-inline: 17px; background: var(--ink); color: white; }
.main-nav .nav-contact:hover { background: var(--violet); }
.menu-toggle { display: none; border: 0; background: none; padding: 11px; }
.menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .2s; }

.hero { min-height: 780px; max-width: 1340px; margin: 0 auto; padding: 144px 50px 86px; display: grid; grid-template-columns: .87fr 1.13fr; align-items: center; gap: 50px; overflow: hidden; }
.eyebrow, .section-kicker { margin: 0 0 22px; font-size: 12px; line-height: 1; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { color: var(--violet); margin-right: 7px; }
.hero h1 { max-width: 620px; margin: 0; font-size: clamp(54px, 6.1vw, 88px); line-height: .94; letter-spacing: -.075em; font-weight: 820; }
.hero h1 em { position: relative; display: inline-block; color: var(--violet); font-family: Georgia, serif; font-weight: 400; letter-spacing: -.06em; }
.hero h1 em::after { content: ""; position: absolute; z-index: -1; left: 1%; bottom: -.04em; width: 102%; height: .12em; border-radius: 99px; background: var(--acid); transform: rotate(-2deg); }
.hero-lead { max-width: 590px; margin: 30px 0 0; color: var(--muted); font-size: 18px; line-height: 1.7; letter-spacing: -.015em; }
.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 54px; padding: 0 23px; border-radius: 15px; font-size: 14px; font-weight: 800; text-decoration: none; transition: transform .2s, box-shadow .2s, background .2s; }
.button span { font-size: 17px; }
.button:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(21,25,20,.16); }
.button-primary { background: var(--ink); color: white; }
.button-primary:hover { background: var(--violet); }
.text-link, .product-link { font-size: 14px; font-weight: 800; text-decoration: none; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }
.text-link span, .product-link span { display: inline-block; transition: transform .2s; }
.text-link:hover span, .product-link:hover span { transform: translate(3px, -3px); }
.hero-note { display: flex; align-items: center; gap: 14px; margin-top: 44px; }
.avatar-stack { display: flex; padding-left: 12px; }
.avatar-stack i { display: grid; place-items: center; width: 35px; height: 35px; margin-left: -12px; border: 3px solid var(--paper); border-radius: 50%; background: var(--blue); font-style: normal; font-size: 10px; font-weight: 900; }
.avatar-stack i:nth-child(2) { background: var(--orange); }.avatar-stack i:nth-child(3) { background: var(--acid); }
.hero-note p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }.hero-note strong { color: var(--ink); }

.learning-map { position: relative; min-height: 570px; border-radius: 50%; background: linear-gradient(145deg, #242b23, #111510); box-shadow: var(--shadow); isolation: isolate; }
.learning-map::before { content: ""; position: absolute; inset: 5%; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.learning-map::after { content: ""; position: absolute; inset: 18%; z-index: -1; background: radial-gradient(circle, rgba(218,250,87,.2), transparent 65%); }
.map-orbit { position: absolute; inset: 15%; border: 1px dashed rgba(255,255,255,.19); border-radius: 50%; animation: spin 28s linear infinite; }
.orbit-two { inset: 29%; animation-direction: reverse; animation-duration: 19s; }
.map-label { position: absolute; color: rgba(255,255,255,.46); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.label-explore { top: 14%; left: 21%; transform: rotate(-24deg); }.label-create { right: 9%; top: 54%; transform: rotate(73deg); }.label-code { left: 22%; bottom: 12%; transform: rotate(22deg); }
.map-card { position: absolute; display: flex; flex-direction: column; justify-content: space-between; padding: 18px; border: 1px solid rgba(255,255,255,.42); border-radius: 24px; color: var(--ink); text-decoration: none; box-shadow: 0 18px 40px rgba(0,0,0,.24); transition: transform .3s, box-shadow .3s; }
.map-card:hover { z-index: 5; box-shadow: 0 24px 52px rgba(0,0,0,.35); }
.map-simu { z-index: 2; top: 11%; left: 9%; width: 42%; height: 45%; background: var(--blue); transform: rotate(-7deg); }.map-simu:hover { transform: rotate(-3deg) translateY(-8px); }
.map-anak { z-index: 3; top: 13%; right: 7%; width: 36%; height: 38%; background: var(--orange); transform: rotate(8deg); }.map-anak:hover { transform: rotate(4deg) translateY(-8px); }
.map-python { z-index: 4; right: 14%; bottom: 8%; width: 43%; height: 39%; background: var(--acid); transform: rotate(-4deg); }.map-python:hover { transform: rotate(0deg) translateY(-8px); }
.map-card-top { display: flex; align-items: center; justify-content: space-between; font-size: 11px; }.map-card-top b { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid rgba(21,25,20,.3); border-radius: 50%; }.map-card-top i { font-size: 19px; font-style: normal; }
.map-card-copy { display: flex; flex-direction: column; }.map-card-copy small { font-size: 8px; font-weight: 900; letter-spacing: .12em; }.map-card-copy strong { margin-top: 2px; font-size: 29px; letter-spacing: -.06em; }.map-card-copy > span { font-size: 11px; font-weight: 650; }
.map-icon { position: absolute; display: block; }
.simu-icon { top: 34%; left: 46%; width: 88px; height: 65px; }.simu-icon i { position: absolute; width: 19px; height: 19px; border: 3px solid var(--ink); border-radius: 50%; }.simu-icon i:nth-child(2) { right: 0; top: 2px; }.simu-icon i:nth-child(3) { left: 28px; bottom: 0; }.simu-icon i:nth-child(4) { left: 12px; top: 12px; width: 68px; height: 42px; border: 0; border-radius: 0; background: linear-gradient(29deg, transparent 48%, var(--ink) 49%, var(--ink) 52%, transparent 53%), linear-gradient(-32deg, transparent 48%, var(--ink) 49%, var(--ink) 52%, transparent 53%); }
.anak-icon { top: 37%; left: 40%; width: 80px; height: 68px; }.anak-icon i { position: absolute; width: 43px; height: 43px; border-radius: 12px; border: 3px solid var(--ink); }.anak-icon i:nth-child(1) { left: 0; top: 4px; transform: rotate(-12deg); }.anak-icon i:nth-child(2) { right: 0; bottom: 0; background: var(--ink); transform: rotate(11deg); }.anak-icon i:nth-child(3) { left: 31px; top: -7px; width: 15px; height: 15px; border-radius: 50%; background: var(--acid); }
.python-icon { top: 31%; right: 18%; }.python-icon i { font-family: ui-monospace, monospace; font-size: 38px; font-style: normal; font-weight: 900; }
.map-center { position: absolute; z-index: 10; left: 34%; top: 48%; display: flex; align-items: center; gap: 7px; color: white; transform: rotate(-6deg); }.map-center span { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: #161a15; color: var(--acid); font-size: 25px; font-weight: 900; }.map-center small { font-size: 9px; line-height: 1.1; font-weight: 800; text-transform: uppercase; }

@keyframes spin { to { transform: rotate(360deg); } }
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--acid); }
.marquee-track { display: flex; align-items: center; gap: 28px; width: max-content; padding: 17px 0; animation: marquee 25s linear infinite; font-size: 14px; font-weight: 850; text-transform: uppercase; letter-spacing: .045em; }
.marquee-track i { font-style: normal; color: var(--violet); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-shell { width: min(calc(100% - 80px), 1240px); margin-inline: auto; }
.spaces { padding-block: 126px 110px; }
.section-heading { display: grid; grid-template-columns: 1fr 390px; gap: 60px; align-items: end; margin-bottom: 50px; }
.section-kicker { margin-bottom: 13px; color: var(--violet); }
.section-heading h2, .journey-intro h2, .closing h2 { margin: 0; font-size: clamp(40px, 5vw, 67px); line-height: 1; letter-spacing: -.065em; }
.section-heading > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.product-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 20px; }
.product-card { position: relative; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.product-simu { grid-column: 1 / -1; display: grid; grid-template-columns: .88fr 1.12fr; min-height: 510px; padding: 54px; background: #eaf8ff; }
.product-info { display: flex; flex-direction: column; align-items: flex-start; padding-right: 50px; }
.product-meta { width: 100%; display: flex; justify-content: space-between; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-meta > span:first-child { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid currentColor; border-radius: 50%; }
.product-domain { margin: 55px 0 8px; color: #1978a6; font-size: 11px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.product-card h3 { margin: 0; max-width: 580px; font-size: clamp(30px, 3.5vw, 49px); line-height: 1.02; letter-spacing: -.06em; }
.product-card p:not(.product-domain) { color: var(--muted); font-size: 15px; line-height: 1.65; }
.product-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 8px 0 35px; }.product-tags span { padding: 7px 11px; border: 1px solid rgba(21,25,20,.2); border-radius: 99px; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.product-link { margin-top: auto; }
.simu-lab { align-self: stretch; margin: 12px 0 12px 10px; overflow: hidden; border-radius: 25px; background: #1c2324; box-shadow: 0 25px 55px rgba(7, 61, 86, .2); transform: rotate(2deg); }
.lab-toolbar { display: flex; align-items: center; gap: 7px; height: 50px; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.09); }.lab-toolbar i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }.lab-toolbar i:nth-child(2){background:var(--acid)}.lab-toolbar i:nth-child(3){background:var(--blue)}.lab-toolbar span { margin-left: auto; color: rgba(255,255,255,.5); font: 9px ui-monospace, monospace; letter-spacing: .15em; }
.lab-canvas { position: relative; height: calc(100% - 50px); min-height: 380px; overflow: hidden; }.lab-grid { position: absolute; inset: 0; opacity: .17; background-image: linear-gradient(rgba(255,255,255,.17) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.17) 1px, transparent 1px); background-size: 38px 38px; }
.planet { position: absolute; border-radius: 50%; }.planet-a { left: 19%; top: 41%; width: 78px; height: 78px; background: var(--orange); box-shadow: inset -15px -12px 0 rgba(0,0,0,.15), 0 0 40px rgba(255,113,88,.2); }.planet-b { right: 15%; top: 24%; width: 42px; height: 42px; background: var(--acid); box-shadow: inset -8px -6px 0 rgba(0,0,0,.16); }
.trajectory { position: absolute; left: 21%; top: 22%; width: 62%; height: 54%; border: 2px dashed rgba(128,216,255,.75); border-radius: 50%; transform: rotate(-18deg); }
.lab-tooltip { position: absolute; right: 15%; bottom: 15%; display: flex; flex-direction: column; padding: 11px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; background: rgba(255,255,255,.08); color: white; backdrop-filter: blur(8px); }.lab-tooltip small { color: var(--blue); font-size: 7px; letter-spacing: .13em; }.lab-tooltip strong { margin-top: 3px; font: 15px ui-monospace, monospace; }
.lab-slider { position: absolute; left: 9%; bottom: 11%; width: 43%; height: 4px; border-radius: 10px; background: rgba(255,255,255,.15); }.lab-slider::before { content:""; display:block; width:58%; height:100%; background:var(--blue); }.lab-slider i { position:absolute; left:55%; top:50%; width:16px; height:16px; border:3px solid #1c2324; border-radius:50%; background:var(--blue); transform:translateY(-50%); }

.product-anak, .product-python { min-height: 620px; padding: 38px; display: flex; flex-direction: column; align-items: flex-start; }
.product-anak { background: #ffddd5; }.product-python { background: #20251f; color: white; }.product-anak .product-domain { color: #b83522; }.product-python .product-domain { color: var(--acid); }.product-python .product-meta, .product-python p:not(.product-domain) { color: rgba(255,255,255,.6); }.product-python .product-link { border-color: white; }
.product-anak .product-domain, .product-python .product-domain { margin-top: 48px; margin-bottom: 8px; }
.creative-blocks { position: relative; width: 100%; min-height: 190px; margin: 20px 0 15px; }.block { position: absolute; display: flex; flex-direction: column; justify-content: space-between; width: 135px; height: 112px; padding: 15px; border: 2px solid var(--ink); border-radius: 20px; box-shadow: 5px 6px 0 var(--ink); font-size: 17px; }.block b { font-size: 13px; }.block i { font-style: normal; font-size: 30px; }.block-story { left: 2%; top: 36px; background: var(--acid); transform: rotate(-9deg); }.block-make { left: 33%; top: 3px; background: var(--blue); transform: rotate(5deg); }.block-brave { right: 3%; top: 52px; background: white; transform: rotate(11deg); }
.code-window { width: 100%; margin: 30px 0 25px; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 19px; background: #10130f; box-shadow: inset 0 1px 0 rgba(255,255,255,.05); }.code-window > div { display: flex; gap: 6px; padding: 13px 15px; border-bottom: 1px solid rgba(255,255,255,.1); }.code-window i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }.code-window i:nth-child(2){background:var(--acid)}.code-window i:nth-child(3){background:var(--blue)}.code-window code { display: block; padding: 22px; color: #dde6db; font-size: 12px; line-height: 2; white-space: nowrap; }.code-window code span { color: var(--blue); }.code-window code b { color: #ffe27a; font-weight: 500; }.code-window code em { color: #82917d; font-style: normal; }

.journey { padding-block: 90px 130px; }
.journey-intro { display: grid; grid-template-columns: 290px 1fr; gap: 60px; align-items: start; margin-bottom: 80px; }.journey-intro .section-kicker { margin-top: 10px; }.journey-intro h2 em { color: var(--violet); font-family: Georgia, serif; font-weight: 400; }
.journey-steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.journey-step { display: grid; min-width: 0; padding: 28px 30px 0; border-left: 1px solid var(--line); }.journey-step:last-child { border-right: 1px solid var(--line); }.step-number { justify-self: end; color: var(--muted); font: 11px ui-monospace, monospace; }.step-visual { display: grid; place-items: center; width: 130px; height: 130px; margin: 46px auto 58px; border-radius: 50%; font-size: 58px; font-weight: 850; box-shadow: 8px 10px 0 var(--ink); }.visual-question { background: var(--blue); transform: rotate(-8deg); }.visual-spark { background: var(--orange); border-radius: 30px; transform: rotate(6deg); }.visual-code { width: 155px; background: var(--acid); border-radius: 50% 30% 48% 34%; font: 33px ui-monospace, monospace; transform: rotate(-4deg); }.journey-step small { color: var(--violet); font-size: 9px; font-weight: 900; letter-spacing: .12em; }.journey-step h3 { margin: 8px 0 12px; font-size: 24px; line-height: 1.08; letter-spacing: -.04em; }.journey-step p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.closing { position: relative; min-height: 510px; margin-bottom: 40px; overflow: hidden; display: flex; align-items: center; padding: 70px; border-radius: 42px; background: var(--violet); color: white; }
.closing-copy { position: relative; z-index: 2; }.closing .eyebrow span { color: var(--acid); }.closing h2 { max-width: 790px; font-size: clamp(45px, 5.5vw, 74px); }.button-light { margin-top: 35px; background: var(--acid); color: var(--ink); }
.closing-mark { position: absolute; right: 7%; bottom: -18%; color: rgba(255,255,255,.08); font-size: 340px; line-height: 1; font-weight: 900; letter-spacing: -.12em; }
.closing-shape { position: absolute; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; }.shape-one { right: 13%; top: -30%; width: 420px; height: 420px; }.shape-two { right: -4%; bottom: -57%; width: 520px; height: 520px; }

.site-footer { padding-block: 55px 32px; }.footer-top { display: flex; justify-content: space-between; gap: 30px; align-items: flex-start; padding-bottom: 60px; }.footer-top > p { max-width: 390px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 25px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }.footer-links { display: flex; flex-wrap: wrap; gap: 25px; }.footer-links a { font-weight: 700; text-decoration: none; }.footer-links a:hover { color: var(--violet); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; padding-top: 150px; }.hero-copy { max-width: 760px; }.learning-map { width: min(100%, 700px); min-height: 610px; justify-self: center; }
  .product-simu { grid-template-columns: 1fr; }.product-info { padding-right: 0; }.simu-lab { min-height: 430px; margin-top: 45px; }
  .product-grid { grid-template-columns: 1fr; }.product-anak, .product-python { min-height: 590px; }
  .journey-intro { grid-template-columns: 1fr; gap: 10px; }.journey-steps { grid-template-columns: 1fr; border-bottom: 1px solid var(--line); }.journey-step { grid-template-columns: 70px 170px 1fr; align-items: center; gap: 15px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }.journey-step:last-child { border-bottom: 0; }.step-number { justify-self: start; align-self: start; }.step-visual { margin: 0; transform: scale(.8); }
}

@media (max-width: 720px) {
  .site-header { top: 10px; width: calc(100% - 24px); background: rgba(255,254,249,.88); border-color: var(--line); backdrop-filter: blur(14px); }.menu-toggle { display: block; }.main-nav { position: absolute; top: calc(100% + 8px); left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: var(--shadow); }.main-nav.is-open { display: flex; }.main-nav .nav-contact { margin: 3px 0 0; text-align: center; }.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { min-height: auto; padding: 125px 20px 60px; gap: 55px; }.hero h1 { font-size: clamp(48px, 15vw, 68px); }.hero-lead { font-size: 16px; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 19px; }.hero-note { margin-top: 32px; }
  .learning-map { min-height: 480px; width: 112%; margin-left: -6%; }.map-simu { left: 4%; width: 47%; height: 43%; }.map-anak { right: 3%; width: 41%; }.map-python { right: 8%; width: 50%; height: 37%; }.map-card-copy strong { font-size: 23px; }.map-card-copy > span { font-size: 9px; }.map-icon { transform: scale(.72); }.map-center { left: 28%; top: 49%; }.label-explore, .label-create, .label-code { display: none; }
  .section-shell { width: calc(100% - 32px); }.spaces { padding-block: 85px 75px; }.section-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 35px; }.section-heading h2, .journey-intro h2 { font-size: 43px; }
  .product-simu, .product-anak, .product-python { padding: 28px; border-radius: 26px; }.product-simu { min-height: 0; }.product-domain { margin-top: 38px; }.product-card h3 { font-size: 35px; }.product-card p:not(.product-domain) { font-size: 14px; }.simu-lab { min-height: 340px; margin: 40px 0 0; transform: none; }.lab-canvas { min-height: 290px; }.planet-a { width: 58px; height: 58px; }.product-anak, .product-python { min-height: 580px; }.creative-blocks { transform: scale(.84); transform-origin: left center; width: 118%; }.code-window code { padding: 18px; font-size: 10px; }
  .journey { padding-block: 70px 90px; }.journey-intro { margin-bottom: 50px; }.journey-step { grid-template-columns: 45px 1fr; padding: 25px 20px; }.step-visual { grid-column: 2; justify-self: start; margin-block: 12px 18px; }.journey-step > div:last-child { grid-column: 2; }
  .closing { min-height: 530px; margin-bottom: 20px; padding: 42px 28px; border-radius: 30px; align-items: flex-start; }.closing h2 { font-size: 45px; }.closing-mark { right: 3%; font-size: 230px; }.footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }.footer-top { padding-bottom: 42px; }.footer-bottom { gap: 22px; }
}

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