/* ==========================================================================
   ATX — Global FinTech Enabler
   Brand palette sampled from the ATX logo and the 2023 stats graphic.
   ========================================================================== */

:root {
  /* Brand */
  --orange:      #f04e23;
  --orange-dark: #d13d16;
  --orange-soft: #fff1ec;
  --navy:        #14304f;
  --navy-deep:   #0d2138;
  --blue:        #1c4fa1;
  --cyan:        #3ba9dc;
  --teal:        #3fbfa0;

  /* Neutrals */
  --ink:      #1d2733;
  --body:     #5c6874;
  --muted:    #8b96a2;
  --line:     #e5e9ee;
  --surface:  #ffffff;
  --surface-2:#f6f8fb;
  --surface-3:#eef2f7;

  /* Type */
  --font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Shape */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(20, 48, 79, .06);
  --shadow-md: 0 12px 32px rgba(20, 48, 79, .10);
  --shadow-lg: 0 28px 64px rgba(20, 48, 79, .14);

  --shell: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(3.75rem, 8vw, 7rem);
  --header-h: 76px;
}

/* --------------------------------------------------------------- reset ---- */

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(.97rem, .35vw + .9rem, 1.03rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  margin: 0 0 .6em;
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
  letter-spacing: -.015em;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.15rem); }
h2 { font-size: clamp(1.6rem, 3.1vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.5vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--orange); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--orange-dark); }

img, svg { max-width: 100%; height: auto; display: block; }

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

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

.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: absolute; left: 1rem; top: -4rem; z-index: 200;
  padding: .7rem 1.1rem; border-radius: var(--r-sm);
  background: var(--navy); color: #fff; font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; color: #fff; }

/* -------------------------------------------------------------- layout ---- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--tint { background: var(--surface-2); }
.section--navy { background: var(--navy-deep); color: rgba(255,255,255,.76); }
.section--navy h2, .section--navy h3 { color: #fff; }

.section-head { max-width: 620px; margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  margin-bottom: .85rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
}
.section--navy .eyebrow { color: var(--cyan); }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .82rem 1.65rem;
  border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s ease, background-color .18s ease,
              border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn .icon { flex: none; }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 22px rgba(240, 78, 35, .28);
}
.btn-primary:hover { background: var(--orange-dark); color: #fff; }

.btn-ghost {
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.06);
  color: #fff;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.14); color: #fff; }

.btn-outline {
  border-color: var(--line);
  background: var(--surface);
  color: var(--navy);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand img { border-radius: 10px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-size: 1.32rem; font-weight: 800; letter-spacing: .01em; color: var(--navy);
}
.brand-text small {
  font-size: .655rem; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--muted);
}

.primary-nav { display: flex; align-items: center; gap: clamp(.4rem, 1.2vw, 1.1rem); }
.primary-nav ul { display: flex; align-items: center; gap: clamp(.15rem, .9vw, .7rem); }

.primary-nav a:not(.btn) {
  display: block;
  padding: .5rem .68rem;
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--ink);
}
.primary-nav a:not(.btn):hover { color: var(--orange); background: var(--orange-soft); }
.primary-nav a[aria-current="page"] { color: var(--orange); font-weight: 600; }

.nav-cta { padding: .6rem 1.2rem; font-size: .85rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  cursor: pointer;
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block; width: 20px; height: 2px;
  margin-inline: auto;
  background: var(--navy); border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before,
.nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after  { top:  6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after  { transform: translateY(-6px) rotate(-45deg); }

/* ----------------------------------------------------------- hero (home) --- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 88% 12%, rgba(59,169,220,.16), transparent 62%),
    linear-gradient(160deg, #f8fbfe 0%, #eef4fa 100%);
}
.hero::after {
  content: "";
  position: absolute; inset-inline: 0; bottom: 0; height: 1px;
  background: var(--line);
}

.hero-slides { position: relative; }

.hero-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2.75rem, 6vw, 5rem);
}
.hero-slide[hidden] { display: none; }

.hero-copy { max-width: 34rem; }
.hero-copy .eyebrow { color: var(--blue); }

.hero-copy h1 { margin-bottom: .3em; }
.hero-copy h1 .accent { color: var(--orange); display: block; }
.hero-copy .hero-sub {
  margin: 0 0 1.15rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 600;
  color: var(--cyan);
}
.hero-copy .hero-body { margin-bottom: 1.9rem; max-width: 32rem; }

.hero-figure { position: relative; display: grid; place-items: center; }
.hero-figure::before {
  content: "";
  position: absolute;
  width: 74%; aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--cyan), #7fd0ef);
  opacity: .9;
}
.hero-figure img {
  position: relative;
  max-height: 460px;
  width: auto;
  filter: drop-shadow(0 24px 48px rgba(20,48,79,.22));
}

.hero-dots {
  display: flex;
  gap: .55rem;
  justify-content: center;
  padding-bottom: 2.5rem;
}
.hero-dots button {
  width: 34px; height: 5px;
  padding: 0;
  border: 0; border-radius: var(--r-pill);
  background: rgba(20,48,79,.18);
  cursor: pointer;
  transition: background-color .2s ease, width .2s ease;
}
.hero-dots button[aria-selected="true"] { width: 52px; background: var(--orange); }

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

.notice {
  background: var(--navy-deep);
  color: rgba(255,255,255,.82);
}
.notice-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.75rem;
  padding-block: 1.4rem;
}
.notice-body { flex: 1 1 22rem; min-width: 0; }
.notice-body strong {
  display: block;
  margin-bottom: .2rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ffb59f;
}
.notice-body p { margin: 0; font-size: .93rem; line-height: 1.6; }

/* -------------------------------------------------------- page hero (sub) -- */

.page-hero {
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
  background:
    radial-gradient(80% 140% at 100% 0%, rgba(59,169,220,.22), transparent 60%),
    var(--navy-deep);
  color: rgba(255,255,255,.72);
}
.page-hero h1 { color: #fff; margin-bottom: .35em; }
.page-hero .crumb {
  margin: 0;
  font-size: .85rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.6);
}
.page-hero .crumb a { color: rgba(255,255,255,.9); }
.page-hero .crumb a:hover { color: #fff; }

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

.grid { display: grid; gap: clamp(1.15rem, 2.5vw, 1.9rem); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(240,78,35,.32);
  box-shadow: var(--shadow-md);
}
.card h3 { margin-bottom: .5rem; }
.card p { margin: 0; font-size: .95rem; }

.card-icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  margin-bottom: 1.1rem;
  border-radius: var(--r-md);
  background: var(--orange-soft);
  color: var(--orange);
}
.card:nth-child(2) .card-icon { background: #eaf6fc; color: var(--cyan); }
.card:nth-child(3) .card-icon { background: #eafaf5; color: var(--teal); }

/* --------------------------------------------------------------- split ---- */

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 5vw, 4rem);
  align-items: center;
}
.split-figure img { border-radius: var(--r-lg); }
.split--flip .split-figure { order: 2; }

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

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.stat {
  padding: clamp(1.4rem, 2.4vw, 2rem);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.stat-value {
  display: block;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #fff;
}
.stat-value .prefix { font-size: .55em; vertical-align: .32em; margin-right: .1em; color: var(--cyan); }
.stat-value .suffix { color: var(--orange); }
.stat-label {
  display: block;
  margin-top: .6rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.66);
}

/* ------------------------------------------------------- mission / vision -- */

.mv-card {
  display: flex;
  gap: 1.15rem;
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.mv-card .card-icon { flex: none; margin-bottom: 0; }
.mv-card h3 { margin-bottom: .35rem; }
.mv-card p { margin: 0; font-size: .95rem; }

/* ------------------------------------------------------------- products ---- */

.product {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(2.25rem, 4vw, 3.25rem);
  border-bottom: 1px solid var(--line);
}
.product:last-child { border-bottom: 0; }
.product:nth-child(even) .product-figure { order: 2; }

.product-figure {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border-radius: var(--r-lg);
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.product-figure img { max-height: 100%; width: auto; object-fit: contain; }

.product-body .eyebrow { color: var(--blue); }
.product-body h2 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }
.product-body p { max-width: 46rem; }
.product-body .btn { margin-top: .6rem; }

/* ----------------------------------------------------------- highlights ---- */

.highlight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(1.75rem, 4vw, 3rem);
}
.highlight:nth-child(even) .highlight-figure { order: 2; }
.highlight-figure {
  position: relative;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.highlight-figure::before {
  content: "";
  position: absolute;
  width: 68%; aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(59,169,220,.9), rgba(127,208,239,.85));
}
.highlight-figure img {
  position: relative;
  max-height: 340px; width: auto;
  filter: drop-shadow(0 18px 38px rgba(20,48,79,.18));
}

/* ------------------------------------------------------------- partners ---- */

.partners {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--line);
}
.partner {
  display: grid;
  place-items: center;
  min-height: 108px;
  padding: 1.1rem 1.4rem;
  background: var(--surface);
  transition: background-color .2s ease;
}
.partner:hover { background: var(--surface-2); }
.partner img {
  max-height: 52px; width: auto;
  filter: grayscale(1);
  opacity: .62;
  transition: filter .22s ease, opacity .22s ease;
}
.partner:hover img { filter: none; opacity: 1; }

/* ---------------------------------------------------------------- jobs ---- */

.jobs { display: grid; gap: .9rem; }
.job {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem clamp(1.15rem, 2.4vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.job:hover {
  transform: translateX(4px);
  border-color: rgba(240,78,35,.35);
  box-shadow: var(--shadow-sm);
}
.job-icon {
  display: grid; place-items: center;
  width: 42px; height: 42px; flex: none;
  border-radius: var(--r-sm);
  background: var(--orange-soft);
  color: var(--orange);
}
.job h3 { margin: 0; font-size: 1.03rem; }
.job-apply { margin-left: auto; font-size: .88rem; font-weight: 600; }

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

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(.85rem, 2vw, 1.35rem);
}
.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--surface-2);
  aspect-ratio: 4 / 3;
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery figure:hover img { transform: scale(1.05); }

/* ------------------------------------------------------------- contact ---- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: start;
}

.contact-list { display: grid; gap: 1.1rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
}
.contact-item .card-icon {
  width: 44px; height: 44px; flex: none; margin: 0;
}
.contact-item:nth-child(2) .card-icon { background: #eaf6fc; color: var(--cyan); }
.contact-item:nth-child(3) .card-icon { background: #eafaf5; color: var(--teal); }
.contact-item:nth-child(4) .card-icon { background: var(--surface-3); color: var(--navy); }
.contact-item h3 {
  margin: 0 0 .15rem;
  font-size: .74rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted);
}
.contact-item p, .contact-item address {
  margin: 0; font-style: normal; font-size: .97rem; color: var(--ink);
}
.contact-item a { font-weight: 600; }

.contact-figure img {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

/* ---------------------------------------------------------------- prose ---- */

.prose { max-width: 78ch; }
.prose h2 { margin-top: 2.25em; font-size: clamp(1.2rem, 1.9vw, 1.5rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.9em; font-size: 1.05rem; }
.prose p { font-size: .98rem; }

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

.site-footer {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  background: var(--navy-deep);
  color: rgba(255,255,255,.66);
  font-size: .93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-bottom: clamp(2.25rem, 4vw, 3.25rem);
}
.footer-brand .brand { margin-bottom: 1.1rem; }
.footer-brand .brand-text strong { color: #fff; }
.footer-brand .brand-text small { color: rgba(255,255,255,.5); }
.footer-brand p { margin: 0; max-width: 30rem; font-size: .92rem; }

.footer-col h2 {
  margin-bottom: 1rem;
  font-size: .76rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #fff;
}
.footer-col ul { display: grid; gap: .55rem; }
.footer-col a { color: rgba(255,255,255,.66); }
.footer-col a:hover { color: #fff; }
.footer-col address { margin-bottom: 1rem; font-style: normal; line-height: 1.7; }

.footer-contact { display: grid; gap: .6rem; }
.footer-contact li { display: flex; align-items: center; gap: .6rem; }
.footer-contact .icon { flex: none; color: var(--cyan); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 1.5rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .85rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.72); }
.footer-bottom a:hover { color: #fff; }

/* ----------------------------------------------------------- animations ---- */

/* Reveal-on-scroll only hides content once JS has confirmed it is running,
   so the page stays fully readable without (or before) JavaScript. */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

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

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

@media (max-width: 1080px) {
  .primary-nav ul { gap: .1rem; }
  .primary-nav a:not(.btn) { padding: .5rem .5rem; font-size: .83rem; }
}

@media (max-width: 940px) {
  .nav-toggle { display: grid; place-items: center; }

  .primary-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .35rem;
    padding: 1rem var(--gutter) 1.5rem;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: .1rem; }
  .primary-nav a:not(.btn) { padding: .8rem .9rem; font-size: .97rem; }
  .nav-cta { justify-content: center; margin-top: .65rem; }

  .hero-slide { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
  .hero-figure img { max-height: 330px; }
  .hero-copy { max-width: none; }

  .split,
  .contact-grid,
  .product,
  .highlight { grid-template-columns: 1fr; }

  .split--flip .split-figure,
  .product:nth-child(even) .product-figure,
  .highlight:nth-child(even) .highlight-figure { order: 0; }

  .product-figure { aspect-ratio: 16 / 9; max-width: 420px; }

  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .grid-3, .grid-2, .stats { grid-template-columns: 1fr; }
  .partners { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-text small { display: none; }
  .notice-inner { padding-block: 1.15rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .job-apply { margin-left: 0; }
}
