/* =========================================================
   SOELU LP v2 — "WhatYa-style" airy, playful system
   White canvas · multi-color accents · ghost words · deco shapes
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

:root {
  /* palette */
  --pink:   #E8336E;
  --orange: #F6A11F;
  --yellow: #FBC11E;
  --blue:   #16A6E8;
  --purple: #8A5CB0;

  --accent: var(--pink);          /* emphasis (overridable by Tweaks) */
  --cta-a:  #F6A11F;              /* CTA gradient (overridable) */
  --cta-b:  #FBC11E;

  --ink:   #1B2435;
  --ink-2: #5C6472;
  --ink-3: #9AA2AE;
  --bg:    #FFFFFF;
  --panel: #F4F6FB;
  --band:  #15A8E9;
  --line:  #E7EBF2;

  --font-head: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", "Zen Kaku Gothic New", sans-serif;

  --section-py: 118px;
  --maxw: 1140px;
  --radius: 20px;
  --shadow: 0 4px 14px rgba(27,36,53,.05), 0 24px 50px -28px rgba(27,36,53,.22);
  --shadow-sm: 0 2px 6px rgba(27,36,53,.05), 0 12px 28px -20px rgba(27,36,53,.2);
}

[data-density="compact"] { --section-py: 84px; }
[data-density="comfy"]   { --section-py: 150px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.95;
  font-feature-settings: "palt" 1;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
.section { padding-block: var(--section-py); position: relative; overflow: hidden; }
.section--panel { background: var(--panel); }

/* ---------- Decorative shapes ---------- */
.deco { position: absolute; z-index: 0; pointer-events: none; }
.deco--ring   { border-radius: 50%; border-style: solid; }
.deco--disc   { border-radius: 50%; }
.deco--sq     { border-radius: 28%; }
.deco--diamond{ border-style: solid; transform: rotate(45deg); border-radius: 12%; }
.deco--tri    { width: 0; height: 0; background: transparent !important; }
.deco--plus { background: transparent !important; }
.deco--plus::before, .deco--plus::after { content: ""; position: absolute; inset: 0; margin: auto; background: currentColor; }
.deco--plus::before { width: 100%; height: 22%; }
.deco--plus::after  { width: 22%; height: 100%; }
@media (prefers-reduced-motion: no-preference) {
  .deco--float { animation: floaty 7s ease-in-out infinite; }
  @keyframes floaty { 0%,100% { transform: translateY(0) rotate(var(--rot,0deg)); } 50% { transform: translateY(-14px) rotate(var(--rot,0deg)); } }
}

/* ---------- Type helpers ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.4; margin: 0; }
.label { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); display: inline-flex; flex-direction: column; gap: 12px; margin: 0 0 26px; }
.label.is-centered { align-items: center; text-align: center; }
.label::after { content: ""; width: 46px; height: 3px; border-radius: 3px; background: var(--lc, var(--blue)); }
.label.is-centered::after { align-self: center; }

.ghostword { position: absolute; top: clamp(40px, 6vw, 76px); left: 0; right: 0; text-align: center; font-family: var(--font-head); font-weight: 900; font-size: clamp(64px, 13vw, 168px); line-height: 1; color: #EEF1F8; letter-spacing: .05em; z-index: 0; pointer-events: none; white-space: nowrap; }

.h2 { font-size: clamp(25px, 3.2vw, 38px); font-weight: 800; line-height: 1.45; }
.lead { font-size: clamp(14px, 1.1vw, 16px); color: var(--ink-2); line-height: 2.1; margin: 20px 0 0; text-wrap: pretty; }
.center { text-align: center; }
.section-head { max-width: 820px; }
.section-head.is-centered { margin-inline: auto; }

/* keyword emphasis */
.hl { color: var(--accent); }
.hl-orange { color: var(--orange); }
.hl-blue { color: var(--blue); }
.hl-line { background: linear-gradient(transparent 60%, color-mix(in srgb, var(--accent) 30%, transparent) 0); padding: 0 .05em; }
.result {
  display: inline-block; background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 700;
  padding: 6px 14px; border-radius: 6px; font-size: clamp(13px,1.05vw,15px); line-height: 1.7; letter-spacing: .02em;
}
.result-label { font-family: var(--font-head); font-weight: 800; font-size: 13px; letter-spacing: .14em; color: var(--accent); display: block; margin-bottom: 10px; }

/* ---------- Buttons ---------- */
.btn {
  --bh: 56px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: var(--bh); padding: 0 32px; border-radius: 999px; border: 2px solid transparent;
  font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: .02em; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn svg { width: 17px; height: 17px; }
.btn--cta { color: #fff; background: linear-gradient(95deg, var(--cta-a), var(--cta-b)); box-shadow: 0 14px 26px -12px color-mix(in srgb, var(--cta-a) 75%, transparent); }
.btn--cta:hover { transform: translateY(-2px); box-shadow: 0 18px 30px -12px color-mix(in srgb, var(--cta-a) 80%, transparent); }
.btn--pink { color: #fff; background: var(--pink); box-shadow: 0 14px 26px -14px var(--pink); }
.btn--pink:hover { transform: translateY(-2px); filter: brightness(1.04); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink-3); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--blue); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--sm { --bh: 46px; padding: 0 22px; font-size: 13.5px; }
.btn--lg { --bh: 62px; padding: 0 40px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.86); backdrop-filter: saturate(140%) blur(14px); transition: box-shadow .25s ease; }
.header.is-stuck { box-shadow: 0 1px 0 var(--line), 0 8px 24px -18px rgba(27,36,53,.3); }
.header__inner { display: flex; align-items: center; gap: 28px; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark { width: 40px; height: 34px; flex: none; }
.brand__logo { height: 30px; width: auto; display: block; }
.brand__logo--footer { height: 32px; filter: brightness(0) invert(1); }
.brand__name { font-family: var(--font-head); font-weight: 900; font-size: 24px; line-height: 1; letter-spacing: .005em; }
.nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav a { font-family: var(--font-head); font-weight: 500; font-size: 14px; color: var(--ink-2); transition: color .15s ease; }
.nav a:hover { color: var(--accent); }
.header__cta { display: flex; align-items: center; gap: 10px; }
.menu-btn { display: none; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(48px, 6vw, 92px) var(--section-py); }
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.hero__label { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--blue); margin: 0 0 18px; display: inline-flex; align-items: center; gap: 10px; }
.hero__label::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--blue); }
.hero h1 { font-size: clamp(30px, 4.4vw, 54px); font-weight: 900; line-height: 1.32; letter-spacing: .01em; }
.hero h1 .row { display: block; }
.hero__lead { font-size: clamp(14px, 1.15vw, 16px); color: var(--ink-2); line-height: 2.1; margin: 26px 0 0; max-width: 31em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__stats { display: flex; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.hero__stat .n { font-family: var(--font-head); font-weight: 900; font-size: clamp(26px, 2.8vw, 34px); line-height: 1; color: var(--accent); }
.hero__stat .n small { font-size: .5em; margin-left: 2px; }
.hero__stat .l { font-size: 12px; color: var(--ink-2); margin-top: 9px; font-weight: 500; }
.hero__visual { position: relative; }
.hero__photo { width: 100%; height: clamp(440px, 52vw, 580px) !important; border-radius: 26px; box-shadow: var(--shadow); position: relative; z-index: 2; }
.hero__chip { position: absolute; z-index: 3; background: #fff; border-radius: 14px; padding: 13px 18px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px; }
.hero__chip .ico { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: #fff; flex: none; }
.hero__chip .t { font-family: var(--font-head); font-weight: 800; font-size: 13.5px; line-height: 1.4; }
.hero__chip .s { font-size: 11px; color: var(--ink-2); }
.hero__chip--1 { left: -26px; top: 34px; }
.hero__chip--2 { right: -20px; bottom: 50px; }

/* ---------- Intro / Question ---------- */
.intro__top { text-align: center; max-width: 880px; margin: 0 auto; position: relative; z-index: 1; }
.intro__statement { font-family: var(--font-head); font-weight: 800; font-size: clamp(22px, 3vw, 36px); line-height: 1.5; }
.qa { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: center; margin-top: 72px; }
.donut { width: min(320px, 78%); aspect-ratio: 1; border-radius: 50%; margin: 0 auto; position: relative; display: grid; place-items: center; }
.donut::after { content: ""; position: absolute; inset: 20%; background: #fff; border-radius: 50%; }
.donut__c { position: relative; z-index: 1; text-align: center; }
.donut__c .big { font-family: var(--font-head); font-weight: 900; font-size: clamp(34px, 5vw, 52px); color: var(--accent); line-height: 1; }
.donut__c .cap { font-size: 12px; color: var(--ink-2); margin-top: 6px; }
.donut__tag { position: absolute; font-family: var(--font-head); font-weight: 700; font-size: 12.5px; }
.donut__tag.is-a { top: 4%; right: 2%; color: var(--accent); }
.donut__tag.is-b { bottom: 2%; left: -4%; color: var(--ink-3); }
.qa__body .h2 { margin-top: 4px; }
.qa__body p { font-size: 14px; color: var(--ink-2); margin: 16px 0 0; line-height: 2.05; }

/* ---------- Numbered features ---------- */
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 76px); align-items: center; }
.feat + .feat { margin-top: clamp(64px, 8vw, 112px); }
.feat:nth-child(even) .feat__media { order: -1; }
.feat__num { font-family: var(--font-head); font-weight: 900; font-size: 16px; color: var(--ink-3); letter-spacing: .12em; margin-bottom: 14px; }
.feat h3 { font-size: clamp(21px, 2.5vw, 30px); line-height: 1.48; }
.feat h3 .cline { color: var(--fc, var(--accent)); }
.feat p { font-size: 14px; color: var(--ink-2); margin-top: 18px; line-height: 2.05; }
.feat__media { position: relative; }
.feat__img { width: 100%; height: clamp(300px, 34vw, 420px) !important; border-radius: var(--radius); box-shadow: var(--shadow); }
.feat__blob { position: absolute; inset: 8% -6% -8% 6%; border-radius: 46% 54% 58% 42%/52% 44% 56% 48%; z-index: 0; }

/* ---------- Performance / POINT ---------- */
.point { display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.point + .point { margin-top: 60px; }
.point:nth-child(even) { grid-template-columns: 1fr auto; }
.point:nth-child(even) .point__badge { order: 2; }
.point__badge { width: clamp(110px, 13vw, 150px); height: clamp(110px, 13vw, 150px); border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; text-align: center; flex: none; box-shadow: 0 18px 36px -16px var(--blue); }
.point__badge small { display: block; font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .14em; opacity: .9; }
.point__badge b { font-family: var(--font-head); font-weight: 900; font-size: clamp(34px, 4vw, 48px); line-height: 1; }
.point__body h3 { font-size: clamp(19px, 2.2vw, 26px); line-height: 1.5; }
.point__body p { font-size: 14px; color: var(--ink-2); margin: 14px 0 18px; line-height: 2; }

/* keyword chips grid */
.kw__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 24px; }
.kw__pill { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 10px; box-shadow: var(--shadow-sm); }
.kw__pill .term { font-family: var(--font-head); font-weight: 600; font-size: 13px; }
.kw__pill .rank { font-family: var(--font-head); font-weight: 900; font-size: 21px; color: var(--accent); white-space: nowrap; }
.kw__pill .rank small { font-size: .5em; color: var(--ink-2); margin-left: 2px; }

/* ---------- Services ---------- */
.svc__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.svc__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.svc__card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.svc__ico { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; color: #fff; }
.svc__ico svg { width: 28px; height: 28px; }
.svc__card h3 { font-size: 19px; margin-top: 22px; }
.svc__card .en { font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: .14em; color: var(--ink-3); text-transform: uppercase; margin-top: 6px; }
.svc__card p { font-size: 13.5px; color: var(--ink-2); margin: 14px 0 0; line-height: 1.95; }

/* ---------- Works ---------- */
.works__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.work { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.work:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.work__shot { width: 100%; height: 220px !important; }
.work__body { padding: 20px 22px 24px; }
.work__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 12px; }
.work__tags span { font-size: 11px; font-weight: 700; color: #fff; border-radius: 999px; padding: 4px 12px; }
.work h3 { font-size: 16px; line-height: 1.55; }
.work .meta { font-size: 12px; color: var(--ink-3); margin-top: 10px; }

/* ---------- Voice ---------- */
.voice__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; position: relative; z-index: 1; }
.voice__card { background: #fff; border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow); position: relative; }
.voice__quote { font-family: Georgia, "Times New Roman", serif; font-size: 56px; line-height: .6; color: var(--accent); height: 30px; }
.voice__logo { height: 30px; display: flex; align-items: center; font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--ink); letter-spacing: .04em; margin-bottom: 14px; }
.voice__card p { font-size: 13.5px; color: var(--ink-2); line-height: 1.95; margin: 14px 0 18px; }
.voice__who { font-size: 12px; color: var(--ink-3); border-top: 1px solid var(--line); padding-top: 16px; }
.voice__stars { color: var(--orange); letter-spacing: 2px; font-size: 13px; }

/* ---------- Pricing ---------- */
.price__tabs { display: inline-flex; gap: 4px; padding: 5px; background: var(--panel); border-radius: 999px; margin: 36px auto 0; }
.price__tab { border: none; background: transparent; border-radius: 999px; padding: 12px 28px; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--ink-2); transition: all .18s ease; }
.price__tab.is-active { background: #fff; color: var(--accent); box-shadow: var(--shadow-sm); }
.price__panel { display: none; }
.price__panel.is-active { display: block; }
.price__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; align-items: start; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column; height: 100%; }
.plan.is-pop { border: 2px solid var(--accent); box-shadow: 0 24px 50px -22px color-mix(in srgb, var(--accent) 55%, transparent); }
.plan__pop { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 12px; padding: 6px 16px; border-radius: 999px; white-space: nowrap; }
.plan__name { font-family: var(--font-head); font-weight: 800; font-size: 18px; }
.plan__en { font-family: var(--font-head); font-weight: 700; font-size: 10.5px; letter-spacing: .14em; color: var(--ink-3); text-transform: uppercase; margin-top: 4px; }
.plan__price { font-family: var(--font-head); font-weight: 900; font-size: 29px; margin-top: 20px; line-height: 1; color: var(--ink); }
.plan__price .yen { font-size: .5em; }
.plan__price .from { font-size: .42em; color: var(--ink-2); }
.plan__tax { font-size: 11px; color: var(--ink-3); margin-top: 6px; }
.plan__desc { font-size: 12.5px; color: var(--ink-2); margin: 18px 0 0; line-height: 1.85; min-height: 3.7em; }
.plan__list { list-style: none; margin: 20px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); display: grid; gap: 11px; }
.plan__list li { font-size: 13px; color: var(--ink-2); display: flex; gap: 9px; align-items: flex-start; line-height: 1.6; }
.plan__list li svg { width: 16px; height: 16px; color: var(--accent); flex: none; margin-top: 3px; }
.plan__cta { margin-top: 24px; }
.price__note { margin-top: 26px; font-size: 12px; color: var(--ink-3); text-align: center; line-height: 1.9; }

/* ---------- Future statement ---------- */
.future { text-align: center; }
.future__big { font-family: var(--font-head); font-weight: 800; font-size: clamp(22px, 3vw, 34px); line-height: 1.55; }
.future__orbit { position: relative; max-width: 760px; margin: 56px auto 0; aspect-ratio: 16/9; }
.future__center { position: absolute; inset: 0; margin: auto; width: 200px; height: 200px; border-radius: 50%; background: #fff; box-shadow: var(--shadow); display: grid; place-items: center; text-align: center; }
.future__center .s { font-size: 12px; color: var(--ink-2); }
.future__center .b { font-family: var(--font-head); font-weight: 900; font-size: 26px; color: var(--accent); margin: 4px 0; }
.future__center .e { font-family: var(--font-head); font-weight: 700; font-size: 10px; letter-spacing: .16em; color: var(--ink-3); }
.orb { position: absolute; width: 120px; height: 120px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); display: grid; place-items: center; text-align: center; font-family: var(--font-head); font-weight: 700; font-size: 12px; color: var(--ink); padding: 8px; }

/* ---------- CTA + footer band ---------- */
.band { background: var(--band); color: #fff; position: relative; overflow: hidden; }
.band__inner { text-align: center; position: relative; z-index: 1; }
.band__mark { width: 60px; height: 50px; margin: 0 auto 22px; }
.band h2 { font-size: clamp(22px, 3vw, 34px); line-height: 1.5; }
.band p { font-size: 14.5px; color: rgba(255,255,255,.92); margin: 20px auto 0; max-width: 40em; line-height: 2; }
.band__tel { font-family: var(--font-head); font-weight: 900; font-size: clamp(28px, 4vw, 44px); margin-top: 28px; letter-spacing: .02em; }
.band__tel small { display: block; font-size: 13px; font-weight: 600; letter-spacing: .1em; opacity: .9; margin-bottom: 4px; }
.band__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

.footer { background: #11151D; color: rgba(255,255,255,.7); padding-block: 64px 0; }
.footer__top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand__name { color: #fff; }
.footer__about { font-size: 13px; line-height: 1.95; margin-top: 20px; max-width: 30em; }
.footer__addr { font-size: 12.5px; line-height: 1.9; margin-top: 16px; color: rgba(255,255,255,.55); }
.footer__col h4 { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: #fff; letter-spacing: .1em; margin-bottom: 16px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer__col a { font-size: 13px; color: rgba(255,255,255,.65); transition: color .15s ease; }
.footer__col a:hover { color: #fff; }
.footer__bottom { padding-block: 26px; text-align: center; font-size: 12px; color: rgba(255,255,255,.45); }

/* ---------- Floating CTA ---------- */
.floatcta { position: fixed; right: 20px; bottom: 20px; z-index: 60; display: flex; flex-direction: column; gap: 10px; }
.floatcta a { box-shadow: var(--shadow); }
@media (max-width: 640px) { .floatcta { left: 12px; right: 12px; flex-direction: row; } .floatcta a { flex: 1; } }

/* ---------- Reveal (transform-only, never hidden) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { transform: translateY(22px); transition: transform .7s cubic-bezier(.22,.61,.36,1); }
  .reveal.in { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid, .qa { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; }
  .svc__grid, .works__grid, .voice__grid, .kw__grid { grid-template-columns: repeat(2, 1fr); }
  .price__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  :root { --section-py: 78px; }
  .wrap { padding: 0 20px; }
  .nav { display: none; }
  .header__cta .btn--ghost { display: none; }
  .menu-btn { display: inline-flex; }
  .svc__grid, .works__grid, .voice__grid, .kw__grid, .price__grid, .footer__top { grid-template-columns: 1fr; }
  .feat, .point, .point:nth-child(even) { grid-template-columns: 1fr; gap: 26px; }
  .feat:nth-child(even) .feat__media, .point:nth-child(even) .point__badge { order: 0; }
  .ghostword { font-size: clamp(46px, 16vw, 90px); }
  .hero__chip--1 { left: 8px; } .hero__chip--2 { right: 8px; }
  .hero__label { font-size: 3.5vw; }
  .hero h1, .hero h1 .row { font-size: 7vw !important; line-height: 1.5; }
  .brand__logo { height: 26px; }
}
