:root {
  --paper: #f6f2e9;
  --ink: #181714;
  --muted: #706c64;
  --line: rgba(24, 23, 20, 0.16);
  --coral: #ff6b57;
  --yellow: #ffd84a;
  --mint: #a8e6cf;
  --blue: #9dc5ff;
  --white: #fffdf8;
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; width: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; color: inherit; -webkit-appearance: none; appearance: none; }

.section-shell { width: min(calc(100% - 64px), var(--max)); max-width: 100%; margin: 0 auto; }
.eyebrow { font: 700 12px/1.2 "DM Sans", sans-serif; letter-spacing: .18em; margin: 0 0 22px; }

.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 50;
  width: 100%; height: 3px;
  background: transparent;
}
.scroll-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--coral), var(--yellow));
  transition: width .1s linear;
}

.site-header {
  position: sticky; top: 0; z-index: 40;
  width: 100%; height: 78px; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark { display: block; width: 44px; height: 44px; border-radius: 10px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; gap: 3px; line-height: 1; }
.brand-name { font: 800 18px/1 "DM Sans", sans-serif; letter-spacing: -.01em; color: var(--ink); }
.brand-jp { color: var(--coral); }
.brand-tagline { font: 600 10.5px/1 "DM Sans", sans-serif; letter-spacing: .02em; color: var(--muted); }
.desktop-nav { display: flex; gap: 28px; font: 700 12px/1 "DM Sans", sans-serif; letter-spacing: .08em; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--coral); transition: width .2s ease; }
.desktop-nav a:hover::after { width: 100%; }
.menu-button { display: none; border: 0; background: none; width: 42px; height: 42px; padding: 9px; }
.menu-button span { display: block; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s ease; }
.mobile-menu { display: none; }

.hero { min-height: calc(100vh - 78px); display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 8vw; padding: 80px 0 96px; }
.hero-copy { container-type: inline-size; }
.hero h1 { margin: 0; font-size: clamp(54px, 14.5cqw, 108px); line-height: 1.1; letter-spacing: -.07em; font-weight: 900; }
.hero h1 span { display: block; white-space: nowrap; }
.smile-line { position: relative; width: fit-content; }
.tiny-smile { position: absolute; right: -58px; top: 4px; border: 1px solid var(--ink); background: var(--yellow); width: 42px; height: 42px; border-radius: 50%; cursor: pointer; transform: rotate(8deg); transition: .2s ease; }
.tiny-smile:hover { transform: rotate(-10deg) scale(1.08); }
.hero-en { margin: 22px 0 34px; font: 600 clamp(20px, 2vw, 32px)/1.1 "DM Sans", sans-serif; letter-spacing: -.03em; color: var(--coral); }
.hero-lead { max-width: 560px; font-size: 18px; line-height: 1.9; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 0 26px; border: 1px solid var(--ink); font-weight: 800; box-shadow: 6px 6px 0 var(--ink); transition: .18s ease; }
.button:hover { transform: translate(3px,3px); box-shadow: 3px 3px 0 var(--ink); }
.primary { background: var(--yellow); }
.text-link { font-weight: 700; }
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span { transform: translate(4px,4px); }

.hero-playground { align-self: center; }
.hero-copy, .hero-playground, .about-grid > *, .works-heading > *, .profile > * { min-width: 0; }
.demo-window { max-width: 100%; overflow: hidden; background: var(--white); border: 2px solid var(--ink); box-shadow: 14px 14px 0 var(--blue); transform: rotate(1.2deg); }
.demo-topbar { height: 42px; border-bottom: 1px solid var(--ink); display: flex; align-items: center; gap: 7px; padding: 0 14px; }
.demo-topbar span { width: 9px; height: 9px; border-radius: 50%; background: var(--ink); opacity: .18; }
.demo-topbar small { margin-left: auto; font: 600 11px/1 "DM Sans", sans-serif; color: var(--muted); }
.demo-body { padding: 30px; }
.demo-label { margin: 0 0 12px; font-weight: 800; }
.task-list { display: grid; gap: 9px; }
.task-item { display: flex; justify-content: space-between; align-items: center; width: 100%; border: 1px solid var(--ink); background: var(--paper); padding: 14px 16px; text-align: left; cursor: pointer; transition: .25s ease; }
.task-item b { font-size: 20px; font-weight: 400; }
.task-item.gone { opacity: .25; transform: translateX(18px); text-decoration: line-through; }
.magic-button { width: 100%; margin-top: 18px; padding: 15px; border: 1px solid var(--ink); background: var(--coral); color: white; font-weight: 900; cursor: pointer; }
.demo-result { margin: 14px 0 0; font-size: 13px; color: var(--muted); }
.playground-note { margin: 18px 0 0; font-size: 12px; color: var(--muted); transform: rotate(-1deg); }

.ticker { display: flex; align-items: center; overflow: hidden; border-block: 1px solid var(--ink); background: var(--yellow); }
.ticker-viewport { flex: 1 1 auto; min-width: 0; overflow: hidden; }
.ticker-track { display: flex; align-items: center; width: max-content; gap: 30px; padding: 15px 0; font: 800 15px/1 "DM Sans", sans-serif; letter-spacing: .12em; animation: ticker 24s linear infinite; }
.ticker-track i { font-style: normal; font-size: 9px; }
.ticker-viewport:hover .ticker-track, .ticker-track.paused { animation-play-state: paused; }
.ticker-toggle { flex: 0 0 auto; width: 44px; height: 44px; border: none; border-inline-start: 1px solid var(--ink); background: transparent; font-size: 11px; cursor: pointer; }
.ticker-toggle:hover { background: var(--ink); color: var(--yellow); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-heading h2 { margin: 0; font-size: clamp(42px, 5.4vw, 84px); line-height: 1.05; letter-spacing: -.055em; }
.about { padding: 150px 0; }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; margin-top: 80px; }
.about-statement { font-size: clamp(20px, 2.15vw, 30px); line-height: 1.75; font-weight: 600; }
.about-statement p { margin: 0 0 28px; }
.principle-cards { display: grid; gap: 18px; }
.principle-card { position: relative; padding: 30px; border: 1px solid var(--ink); background: var(--white); transition: transform .2s ease, box-shadow .2s ease; }
.principle-card:hover { transform: translate(-4px,-4px); box-shadow: 8px 8px 0 var(--ink); }
.principle-card.featured { background: var(--mint); }
.card-no { font: 700 11px/1 "DM Sans", sans-serif; letter-spacing: .15em; }
.principle-card h3 { margin: 28px 0 10px; font-size: 26px; }
.principle-card p { margin: 0; line-height: 1.8; color: #3f3b35; }
.micro-trigger { margin-top: 18px; border: 0; border-bottom: 1px dashed var(--ink); background: none; padding: 2px 0; font-size: 12px; cursor: pointer; }
.tiny-tag { position: absolute; right: 18px; top: 16px; padding: 5px 8px; background: var(--ink); color: white; font-size: 11px; transform: rotate(2deg); }

.about-examples { margin-top: 64px; padding-top: 48px; border-top: 1px dashed var(--line); }
.examples-label { margin: 0 0 22px; font-size: 15px; font-weight: 800; }
.example-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.example-list li { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; padding: 20px 24px; border: 1px solid var(--ink); background: var(--white); line-height: 1.7; }
.example-before { color: var(--muted); }
.example-after { font-weight: 700; }
.example-after::before { content: "→"; margin-right: 8px; font-weight: 800; color: var(--coral); }

.service { padding: 40px 0 140px; }
.section-heading.compact h2 { font-size: clamp(40px, 4.8vw, 70px); }
.service-list { margin-top: 70px; border-top: 1px solid var(--ink); }
.service-list article { display: grid; grid-template-columns: 80px .75fr 1.25fr; gap: 28px; align-items: start; padding: 32px 0; border-bottom: 1px solid var(--ink); }
.service-list article > span { font: 700 12px/1 "DM Sans", sans-serif; }
.service-list h3 { margin: 0; font-size: 24px; }
.service-list p { margin: 0; max-width: 620px; color: var(--muted); line-height: 1.8; }

.works { padding: 150px 0; }
.works-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; }
.works-intro { margin: 0; line-height: 1.9; color: var(--muted); }
.works-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 72px; }
.work-card { position: relative; min-height: 540px; padding: 24px; border: 1px solid var(--ink); display: flex; flex-direction: column; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.work-card:hover { transform: translateY(-8px); box-shadow: 0 16px 0 rgba(24,23,20,.08); }
.work-ebisu { background: #f7eaa7; cursor: pointer; }
.work-bacardi { background: #98d9b5; }
.work-bushmills { background: #d8bd9e; }
.work-meta, .work-foot { display: flex; justify-content: space-between; align-items: center; font: 700 11px/1 "DM Sans", sans-serif; letter-spacing: .1em; }
.work-main { margin: auto 0; }
.work-kicker { font-weight: 800; }
.work-main h3 { margin: 12px 0 18px; font-size: clamp(34px, 3vw, 52px); line-height: 1.04; letter-spacing: -.05em; }
.work-main > p:last-child { line-height: 1.8; }
.work-foot { cursor: pointer; }
.work-foot b { font-size: 28px; transition: transform .2s ease; }
.work-card:hover .work-foot b { transform: translate(5px,-5px); }
.store-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 16px; position: relative; z-index: 1; }
.store-badges img { display: block; height: 40px; width: auto; }
/* Google Play badge PNG has ~41px of transparent padding baked in on every side (646x250, visible mark 564x168),
   so it renders shorter than Apple's tightly-cropped SVG at the same height; scale it up to match visually. */
.store-badges .badge-google { height: 40px; }
.hidden-message { position: absolute; left: 20px; bottom: -46px; padding: 8px 10px; background: var(--ink); color: white; font-size: 11px; transform: rotate(-1deg); transition: bottom .25s ease; }
.work-card:hover .hidden-message { bottom: 18px; }

.profile { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; padding: 150px 0; border-top: 1px solid var(--ink); }
.profile-left h2 { margin: 0; font-size: clamp(40px, 4.4vw, 74px); line-height: 1.06; letter-spacing: -.055em; }
@media (min-width: 981px) {
  .profile-left h2 span { white-space: nowrap; }
}
.profile-name { margin-top: 56px; display: flex; align-items: baseline; gap: 16px; }
.profile-name strong { font-size: 24px; }
.profile-name span { font: 600 14px/1 "DM Sans", sans-serif; color: var(--muted); }
.profile-right { align-self: end; }
.profile-right > p { margin: 0 0 22px; line-height: 1.9; font-size: 17px; }
.profile-lead { font-size: 28px !important; font-weight: 800; }
.profile-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 56px; }
.profile-facts div { min-height: 130px; padding: 20px; border: 1px solid var(--ink); background: var(--white); display: flex; flex-direction: column; justify-content: space-between; }
.profile-facts strong { font: 700 34px/1 "DM Sans", sans-serif; }
.profile-facts span { font: 700 10px/1.3 "DM Sans", sans-serif; letter-spacing: .12em; color: var(--muted); }

.contact { padding: 70px 0 140px; }
.contact-card { position: relative; padding: clamp(36px, 7vw, 92px); border: 2px solid var(--ink); background: var(--blue); color: var(--ink); box-shadow: 14px 14px 0 var(--ink); overflow: hidden; }
.contact-card::after { content: "☺"; position: absolute; right: -16px; bottom: -74px; font: 700 220px/1 "DM Sans", sans-serif; color: rgba(24,23,20,.1); transform: rotate(-8deg); }
.contact-card h2 { position: relative; z-index: 1; margin: 0; font-size: clamp(46px, 6vw, 86px); line-height: 1.04; letter-spacing: -.06em; }
.contact-card > p:not(.eyebrow):not(.secret-copy) { position: relative; z-index: 1; margin: 28px 0; line-height: 1.9; }
.contact-button { position: relative; z-index: 2; margin-top: 10px; background: var(--yellow); color: var(--ink); }
.secret-button { position: relative; z-index: 2; display: block; margin-top: 32px; padding: 0; border: 0; border-bottom: 1px dashed var(--ink); background: none; color: var(--ink); font-size: 11px; cursor: pointer; }
.secret-copy { position: relative; z-index: 2; margin: 10px 0 0; font-size: 11px; opacity: .75; }

.site-footer { min-height: 72px; display: flex; align-items: center; justify-content: center; border-top: 1px solid var(--line); font: 600 11px/1 "DM Sans", sans-serif; letter-spacing: .08em; }
.back-to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--ink); background: var(--yellow);
  font-size: 18px; font-weight: 800; line-height: 1; cursor: pointer;
  box-shadow: 5px 5px 0 var(--ink);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, box-shadow .18s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translate(3px,3px); box-shadow: 2px 2px 0 var(--ink); }
.back-to-top.show:hover { transform: translate(3px,3px); }
.toast { position: fixed; z-index: 100; left: 50%; bottom: 28px; transform: translate(-50%, 30px); background: var(--ink); color: white; padding: 12px 16px; font-size: 13px; opacity: 0; pointer-events: none; transition: .25s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.cursor-dot { position: fixed; z-index: 120; width: 14px; height: 14px; border-radius: 50%; background: var(--coral); pointer-events: none; transform: translate(-50%,-50%); mix-blend-mode: multiply; transition: width .15s ease, height .15s ease; }

@media (max-width: 980px) {
  .section-shell { width: min(calc(100% - 36px), var(--max)); }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .mobile-menu { position: fixed; inset: 78px 0 auto; z-index: 39; display: grid; background: var(--paper); border-bottom: 1px solid var(--ink); transform: translateY(-140%); transition: .3s ease; }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a { padding: 18px 24px; border-top: 1px solid var(--line); font: 800 16px/1 "DM Sans", sans-serif; }
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 68px; padding-top: 72px; }
  .hero-copy { max-width: 760px; }
  .hero-playground { width: min(100%, 640px); margin-left: auto; }
  .about-grid, .works-heading, .profile { grid-template-columns: 1fr; gap: 52px; }
  .about-grid { margin-top: 56px; }
  .service-list article { grid-template-columns: 56px 1fr; }
  .service-list p { grid-column: 2; }
  .works-list { grid-template-columns: 1fr; }
  .work-card { min-height: 430px; }
  .profile-right { max-width: 760px; }
}

@media (max-width: 640px) {
  .cursor-dot { display: none; }

  /* Mobile overflow guard: use margins instead of percentage width calculations. */
  html, body { width: 100%; max-width: 100%; overflow-x: hidden; overflow-x: clip; }
  body { position: relative; }
  main, section, header, footer, nav, div, article, a, button { min-width: 0; }
  main, section, .site-header, .mobile-menu, .site-footer, .ticker { width: 100%; max-width: 100%; }
  .section-shell { width: auto; max-width: none; margin-left: 14px; margin-right: 14px; }

  .site-header { height: 68px; padding: 0 18px; }
  .mobile-menu { inset: 68px 0 auto; }
  .brand { gap: 10px; }
  .brand-mark { width: 36px; height: 36px; border-radius: 8px; }
  .brand-name { font-size: 15px; }
  .brand-tagline { font-size: 9px; }
  .hero { padding: 54px 0 74px; gap: 54px; }
  .hero h1 { max-width: 100%; font-size: clamp(44px, 13.6vw, 64px); overflow-wrap: anywhere; }
  .hero h1 span { white-space: normal; }
  .smile-line { width: 100%; max-width: 100%; padding-right: 38px; }
  .tiny-smile { width: 32px; height: 32px; right: 0; top: 2px; font-size: 0; }
  .hero-playground { width: 100%; max-width: 100%; margin-left: 0; }
  .demo-window { width: 100%; max-width: 100%; transform: none; box-shadow: 8px 8px 0 var(--blue); }
  .task-item.gone { transform: none; }
  .hero-en { font-size: 21px; margin-top: 18px; }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .button { width: 100%; }
  .demo-body { padding: 22px; }
  .about, .works, .profile { padding: 100px 0; }
  .section-heading h2, .section-heading.compact h2 { font-size: 43px; }
  .about-statement { font-size: 19px; }
  .principle-card { padding: 24px; }
  .service { padding-bottom: 100px; }
  .service-list { margin-top: 48px; }
  .service-list article { grid-template-columns: 42px 1fr; padding: 25px 0; }
  .service-list h3 { font-size: 20px; }
  .service-list p { font-size: 14px; }
  .works-list { margin-top: 48px; }
  .work-card { min-height: 420px; padding: 22px; }
  .work-main h3 { font-size: 42px; }
  .hidden-message { display: none; }
  .profile-left h2 { font-size: 46px; }
  .profile-name { margin-top: 36px; flex-direction: column; gap: 6px; }
  .profile-facts { grid-template-columns: 1fr; }
  .profile-facts div { min-height: 104px; }
  .contact { padding: 40px 0 110px; }
  .contact-card { padding: 34px 24px 40px; box-shadow: 8px 8px 0 var(--ink); }
  .contact-card h2 { font-size: 46px; }
  .site-footer { min-height: 64px; gap: 20px; }
  .back-to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; font-size: 16px; box-shadow: 4px 4px 0 var(--ink); }
  .back-to-top:hover { box-shadow: 2px 2px 0 var(--ink); }

  /* Elements that can otherwise enlarge the mobile scroll area. */
  .hero-copy, .hero-playground, .demo-window, .demo-body, .task-list,
  .about-grid, .principle-cards, .service-list, .works-heading, .works-list,
  .work-card, .profile-left, .profile-right, .profile-facts, .contact-card,
  .about-examples, .example-list li {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .example-list li { padding: 16px 18px; font-size: 14px; }
  .ticker { overflow-x: hidden; overflow-x: clip; }
  .ticker-track { max-width: none; }
  .brand, .brand span, .demo-topbar small, .work-meta span, .work-foot span,
  .contact-button, .secret-button, .site-footer span { overflow-wrap: anywhere; word-break: break-word; }
  .contact-button, .secret-button { white-space: normal; }
  .contact-card::after { display: none; }
}

@media (max-width: 530px) {
  .section-shell {
    width: auto;
    max-width: none;
    margin-left: 12px;
    margin-right: 12px;
  }

  .site-header { padding-inline: 14px; }
  .brand { gap: 8px; }
  .brand-mark { width: 30px; height: 30px; }
  .brand-name { font-size: 13px; }
  .brand-tagline { font-size: 8px; }

  .hero { padding-top: 44px; gap: 44px; }
  .hero h1 {
    font-size: clamp(38px, 12.2vw, 56px);
    line-height: 1.1;
    letter-spacing: -.055em;
  }
  .hero-en { font-size: clamp(18px, 5.3vw, 21px); }
  .hero-lead br { display: none; }
  .hero-actions { margin-top: 30px; }

  .demo-topbar { padding-inline: 12px; }
  .demo-topbar small { font-size: 10px; }
  .demo-body { padding: 18px 16px; }
  .task-item { padding: 12px; gap: 10px; }
  .task-item b { font-size: 18px; flex: 0 0 auto; }
  .magic-button { padding: 14px 10px; }
  .playground-note { line-height: 1.6; }

  .about, .works, .profile { padding: 82px 0; }
  .section-heading h2,
  .section-heading.compact h2 {
    font-size: clamp(34px, 10.8vw, 43px);
    line-height: 1.12;
    letter-spacing: -.045em;
  }
  .about-grid { margin-top: 44px; gap: 38px; }
  .about-statement { font-size: 17px; }
  .principle-card { padding: 22px 18px; }
  .principle-card h3 { margin-top: 24px; font-size: 22px; }
  .tiny-tag { position: static; display: inline-block; margin-top: 16px; transform: none; }

  .service { padding-bottom: 82px; }
  .service-list { margin-top: 40px; }
  .service-list article {
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 12px;
  }
  .service-list h3 { font-size: 18px; line-height: 1.5; }
  .service-list p { grid-column: 2; overflow-wrap: anywhere; }

  .works-heading { gap: 32px; }
  .works-intro br { display: none; }
  .work-card { min-height: 390px; padding: 20px 18px; }
  .work-main h3 {
    font-size: clamp(32px, 10.2vw, 42px);
    line-height: 1.08;
    letter-spacing: -.04em;
  }
  .work-main > p:last-child { font-size: 14px; }
  .work-meta, .work-foot { letter-spacing: .06em; }

  .profile-left h2 {
    font-size: clamp(36px, 11vw, 46px);
    line-height: 1.12;
    letter-spacing: -.045em;
  }
  .profile-right > p { font-size: 15px; }
  .profile-lead { font-size: clamp(22px, 7vw, 28px) !important; }
  .profile-facts { margin-top: 42px; }

  .contact { padding-bottom: 90px; }
  .contact-card { padding: 30px 18px 36px; box-shadow: 6px 6px 0 var(--ink); }
  .contact-card h2 {
    font-size: clamp(34px, 10.6vw, 46px);
    line-height: 1.12;
    letter-spacing: -.045em;
  }
  .contact-card > p:not(.eyebrow):not(.secret-copy) br { display: none; }
  .contact-button { padding-inline: 14px; font-size: 14px; }

  .site-footer {
    min-height: 72px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding-block: 18px;
  }

  .toast {
    width: calc(100% - 32px);
    max-width: 420px;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .section-shell {
    width: auto;
    max-width: none;
    margin-left: 10px;
    margin-right: 10px;
  }
  .hero h1 { font-size: 36px; }
  .section-heading h2,
  .section-heading.compact h2 { font-size: 33px; }
  .profile-left h2,
  .contact-card h2 { font-size: 34px; }
  .demo-body { padding-inline: 13px; }
  .work-card { padding-inline: 16px; }
}

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