:root {
  --color-primary: #3f9130;
  --color-primary-dark: #174b21;
  --color-primary-deep: #233727;
  --color-accent: #f6e970;
  --color-cta: #f3a62d;
  --color-line: #06c755;
  --color-text: #233727;
  --color-muted: #68736b;
  --color-bg: #fffef1;
  --color-tint: #f7fae9;
  --color-white: #ffffff;
  --color-border: #dce7df;
  --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-size-base: 16px;
  --shadow-card: 0 18px 48px rgba(35, 78, 67, 0.1);
  --radius-small: 12px;
  --radius-medium: 24px;
  --radius-large: 40px;
  --content-width: 1120px;
  --content-narrow: 880px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--color-white);
  color: var(--color-primary-deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(79, 128, 115, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: min(calc(100% - 24px), var(--content-width));
  min-height: 72px;
  margin: 0 auto;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.site-header__logo img {
  width: clamp(138px, 44vw, 172px);
}

.site-header__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: 0 5px 14px rgba(35, 78, 67, 0.2);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-header__label:hover {
  box-shadow: 0 7px 18px rgba(35, 78, 67, 0.28);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 104px;
  background: var(--color-bg);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-block;
  margin: 0 0 24px;
  padding: 7px 14px;
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 700;
}

.hero__title {
  margin: 0;
  font-size: clamp(24px, 7.5vw, 32px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.38;
  word-break: keep-all;
}

.hero__title span {
  position: relative;
  display: inline-block;
  color: var(--color-primary-dark);
}

.hero__title span::after {
  position: absolute;
  right: -24px;
  bottom: 2px;
  left: 0;
  z-index: -1;
  height: 9px;
  background: rgba(232, 200, 117, 0.72);
  content: "";
}

.hero__subtitle {
  margin: 16px 0 0;
  color: var(--color-primary-dark);
  font-size: clamp(19px, 5vw, 27px);
  font-weight: 700;
}

.hero__lead {
  max-width: 660px;
  margin: 28px 0 0;
  font-size: 16px;
}

.hero__action {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 390px);
  margin-top: 32px;
  padding: 48px 20px 52px;
}

.hero__meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 24px;
}

.hero__action > .button {
  position: relative;
  z-index: 1;
}

.hero__meta span {
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--color-white);
  box-shadow: 0 5px 20px rgba(35, 78, 67, 0.07);
  color: var(--color-primary-deep);
  font-size: 13px;
  font-weight: 700;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__shape--one {
  top: 82px;
  right: 5%;
  width: min(72vw, 290px);
  height: min(58vw, 235px);
  border: 0;
  border-radius: 46% 54% 58% 42% / 46% 38% 62% 54%;
  background: #d6ee95;
}

.hero__shape--two {
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 52% 48% 42% 58% / 54% 44% 56% 46%;
  background: rgba(246, 233, 112, 0.88);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.profile__link:focus-visible,
.site-header__label:focus-visible,
.site-header__logo:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

.button--primary {
  background: var(--color-cta);
  box-shadow: 0 8px 0 #c9821d, 0 18px 36px rgba(190, 119, 20, 0.2);
  color: var(--color-white);
}

.button--line {
  width: min(100%, 520px);
  background: var(--color-line);
  box-shadow: 0 12px 30px rgba(6, 199, 85, 0.22);
  color: var(--color-white);
}

.button__line-text {
  line-height: 1.45;
  text-align: center;
}

.button--light {
  background: var(--color-white);
  color: var(--color-primary-deep);
}

.hero__visual {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
}

.hero-illustration {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  max-width: 560px;
  min-width: 0;
  margin: 0;
  padding: 28px 16px 20px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 20px 60px rgba(35, 55, 39, 0.08);
}

.hero-illustration img {
  width: 100%;
  height: auto;
}

.hero-illustration__labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: -10px;
}

.hero-illustration__labels span {
  padding: 5px 7px;
  border-radius: 999px;
  background: var(--color-primary-dark);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .hero-illustration {
    padding-right: 12px;
    padding-left: 12px;
  }

  .hero-illustration__labels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
    margin-top: -8px;
  }

  .hero-illustration__labels span {
    min-width: 0;
    padding: 5px 4px;
    font-size: clamp(9px, 2.8vw, 11px);
    text-align: center;
    white-space: nowrap;
  }

  .hero-illustration__labels span:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 2px);
  }

  .button--line {
    gap: 7px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: clamp(12px, 3.6vw, 14px);
  }

}

.section {
  padding: 64px 0;
}

.section--white {
  background: var(--color-white);
}

.section--tint {
  background: var(--color-tint);
}

.section--profile {
  background: var(--color-bg);
}

.section__inner {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: var(--content-narrow);
}

.section__label {
  margin: 0 0 8px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
}

.section__label--light {
  color: #aad5c9;
}

.section__title {
  margin: 0 0 36px;
  font-size: clamp(28px, 7vw, 42px);
  line-height: 1.45;
  text-align: center;
}

.concerns {
  display: grid;
  gap: 16px;
}

.concerns__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  background: var(--color-white);
}

.concerns__item p {
  margin: 0;
  font-weight: 700;
}

.concerns__number {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
}

.section__message {
  margin: 32px 0 0;
  color: var(--color-primary-deep);
  font-weight: 700;
  text-align: center;
}

.section__message--concerns {
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.8;
}

.section__message--career {
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.8;
}

.section--concerns {
  position: relative;
  overflow: hidden;
}

.section--concerns .section__inner,
.section--human .section__inner {
  position: relative;
  z-index: 2;
}

.section-illustration {
  position: absolute;
  z-index: -1;
  width: 170px;
  margin: 0;
  pointer-events: none;
  opacity: 0.17;
}

.section-illustration img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.section-illustration--roadmap {
  top: 40px;
  right: calc((100vw - 100%) / -2 - 42px);
  transform: rotate(7deg);
}

.section-illustration--concerns-secondary {
  bottom: -18px;
  left: calc((100vw - 100%) / -2 - 48px);
  transform: rotate(-7deg);
}

.section-illustration--discussion {
  right: calc((100vw - 100%) / -2 - 42px);
  bottom: -18px;
  transform: rotate(6deg);
}

.section-illustration--human-secondary {
  top: 34px;
  left: calc((100vw - 100%) / -2 - 46px);
  transform: rotate(-6deg);
}

.section__lead {
  max-width: 720px;
  margin: -16px auto 40px;
  color: var(--color-muted);
  text-align: center;
}

.section--human {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

.section--human::before {
  position: absolute;
  top: 18px;
  right: 14px;
  width: 170px;
  height: 140px;
  border-radius: 52% 48% 64% 36%;
  background: rgba(214, 238, 149, 0.65);
  content: "";
}

.human-work {
  position: relative;
  display: grid;
  gap: 18px;
}

.human-work__card {
  padding: 28px 24px;
  border: 1px solid rgba(23, 75, 33, 0.12);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
}

.human-work__card span,
.skill-flow__number {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.human-work__card h3,
.skill-flow__item h3 {
  margin: 12px 0 10px;
  color: var(--color-primary-dark);
  font-size: 22px;
}

.human-work__card p,
.skill-flow__item p {
  margin: 0;
}

.section__message--large {
  margin-top: 48px;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.8;
}

.section--skills {
  background: #d6ee95;
}

.skill-flow {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.skill-flow__item {
  overflow: hidden;
  padding: 30px 24px;
  border-radius: var(--radius-medium);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.skill-flow__item .skill-flow__number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  color: var(--color-white);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(23, 75, 33, 0.2);
}

.skill-flow__item h3 {
  margin: 20px 0 14px;
  color: var(--color-primary-deep);
  font-size: clamp(24px, 1.9vw, 27px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.4;
}

.skill-flow__item h3::after {
  display: block;
  width: 48px;
  height: 5px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--color-accent);
  content: "";
}

.skill-flow__image {
  width: 82%;
  max-width: 250px;
  height: auto;
  margin: 20px auto 0;
  border-radius: 18px;
  opacity: 0.68;
  filter: saturate(0.72) contrast(0.92);
}

.skill-flow__item > p:nth-of-type(2) {
  min-height: 54px;
  color: var(--color-muted);
}

.skill-flow__item ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.skill-flow__item li {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--color-tint);
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 700;
}

.skill-flow__arrow {
  color: var(--color-primary-dark);
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  transform: rotate(90deg);
}

.section--shift {
  background: var(--color-white);
}

.question-shift {
  text-align: center;
}

.question-shift p {
  margin: 0;
  padding: 22px;
  border-radius: 999px;
  font-size: clamp(22px, 6vw, 34px);
  font-weight: 900;
}

.question-shift__before {
  border: 1px solid var(--color-border);
  color: var(--color-muted);
}

.question-shift span {
  display: block;
  margin: 12px 0;
  color: var(--color-primary);
  font-size: 32px;
}

.question-shift__after {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.learning {
  display: grid;
  gap: 20px;
}

.learning-card {
  padding: 28px 24px;
  border-radius: var(--radius-medium);
  background: var(--color-white);
  box-shadow: 0 8px 28px rgba(35, 78, 67, 0.07);
}

.learning-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 900;
}

.learning-card h3 {
  margin: 22px 0 12px;
  color: var(--color-primary-deep);
  font-size: 22px;
  line-height: 1.55;
}

.learning-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
}

.video-section {
  scroll-margin-top: 16px;
  padding: 72px 0;
  background: var(--color-primary-deep);
  color: var(--color-white);
}

.video-section__inner {
  width: min(calc(100% - 32px), 1040px);
  margin: 0 auto;
  text-align: center;
}

.video-section__title {
  margin: 0;
  font-size: clamp(30px, 8vw, 46px);
  line-height: 1.4;
}

.video-section__intro {
  margin: 16px auto 30px;
  color: #d7e8e2;
}

.video-player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: #0c2923;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.26);
}

.video-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-player__poster {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #f8f8f4;
  color: var(--color-white);
  cursor: pointer;
}

.video-player__poster::after {
  position: absolute;
  inset: 0;
  background: rgba(12, 41, 35, 0.06);
  content: "";
  transition: background-color 0.2s ease;
}

.video-player__poster:hover::after {
  background: rgba(12, 41, 35, 0.13);
}

.video-player__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-player__play {
  position: absolute;
  right: 50%;
  bottom: 9%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--color-primary-dark);
  box-shadow: 0 10px 28px rgba(12, 41, 35, 0.28);
  font-size: clamp(12px, 3.5vw, 16px);
  font-weight: 900;
  white-space: nowrap;
  transform: translateX(50%);
}

.video-player__play::before {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid var(--color-white);
  content: "";
}

.video-player__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: 0;
  background: #0c2923;
  color: var(--color-white);
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.video-player__fallback::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  content: "";
  transition: background-color 0.2s ease;
}

.video-player__fallback:hover::after {
  background: rgba(0, 0, 0, 0.4);
}

.video-player__fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-player__fallback span {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #c4302b;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  font-weight: 900;
}

.video-player__scheduled {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 70% 20%, rgba(232, 200, 117, 0.18), transparent 34%),
    linear-gradient(145deg, #234f45, #0c2923);
}

.video-player__scheduled::before {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: linear-gradient(90deg, transparent 44%, var(--color-white) 44%, var(--color-white) 56%, transparent 56%);
  content: "";
}

.video-player__date {
  margin-bottom: 4px;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.video-player__scheduled strong {
  font-size: clamp(20px, 5vw, 32px);
}

.video-player__scheduled p {
  margin: 8px 0 0;
  color: #d7e8e2;
  font-size: 13px;
}

.video-section__notice {
  color: var(--color-accent);
}

.next-step {
  padding: 32px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  background: linear-gradient(180deg, var(--color-white), #fbfdfb);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.next-step__lead {
  max-width: 660px;
  margin: -12px auto 30px;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0 auto 32px;
  padding: 0;
  list-style: none;
}

.steps__item {
  padding: 20px 16px;
  border-radius: var(--radius-small);
  background: var(--color-tint);
}

.steps__item span {
  display: block;
  margin-bottom: 6px;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.steps__item p {
  margin: 0;
  color: var(--color-primary-deep);
  font-weight: 700;
}

.steps__item strong {
  color: var(--color-primary-dark);
  font-size: 20px;
}

.next-step__note {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 13px;
}

.profile {
  display: grid;
  gap: 28px;
  align-items: center;
}

.profile__photo {
  width: min(100%, 320px);
  margin: 0 auto;
}

.profile__photo img {
  width: 100%;
  height: auto;
}

.profile__role {
  margin: 0 0 20px;
  color: var(--color-primary-dark);
  font-weight: 700;
}

.profile__content > p:last-of-type {
  margin-bottom: 20px;
}

.profile__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-primary-dark);
  font-weight: 700;
  text-underline-offset: 5px;
}

.closing {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-deep));
  color: var(--color-white);
}

.closing__inner {
  width: min(calc(100% - 40px), var(--content-narrow));
  margin: 0 auto;
  text-align: center;
}

.closing__inner p {
  margin: 0 0 16px;
  color: #cbe2da;
}

.closing__inner h2 {
  margin: 0 0 32px;
  font-size: clamp(28px, 7vw, 44px);
  line-height: 1.55;
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid rgba(23, 75, 33, 0.1);
  background: var(--color-white);
  color: var(--color-muted);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;
  text-align: center;
}

.site-footer__inner > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.site-footer img {
  width: 172px;
}

.site-footer p {
  margin: 0;
  font-size: 12px;
}

.display-pc {
  display: none;
}

@media (min-width: 769px) {
  .section--human::before {
    top: 24px;
    right: 24px;
    width: 260px;
    height: 220px;
  }

  .section-illustration {
    width: 280px;
  }

  .hero__shape--one {
    top: 112px;
    width: min(34vw, 450px);
    height: min(27vw, 340px);
  }

  .hero__shape--two {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero__action {
    width: min(100%, 560px);
    margin-top: 36px;
    padding: 56px 32px 60px;
  }

  .site-header__inner {
    width: min(calc(100% - 40px), var(--content-width));
    min-height: 80px;
  }

  .site-header__logo img {
    width: 196px;
  }

  .site-header__label {
    font-size: 13px;
  }

  .hero {
    padding: 88px 0 120px;
  }

  .hero__title {
    font-size: 48px;
  }

  .hero__title span::after {
    right: -40px;
    height: 12px;
  }

  .hero-illustration {
    padding: 48px 42px 28px;
  }

  .hero-illustration__labels span {
    padding: 5px 10px;
    font-size: 11px;
  }

  .hero__lead {
    font-size: 17px;
  }

  .display-pc {
    display: inline;
  }

  .section {
    padding: 96px 0;
  }

  .concerns__item {
    grid-template-columns: 70px 1fr;
    padding: 22px 28px;
    font-size: 17px;
  }

  .learning {
    grid-template-columns: repeat(3, 1fr);
  }

  .human-work {
    grid-template-columns: repeat(3, 1fr);
  }

  .skill-flow {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 14px;
  }

  .skill-flow__arrow {
    align-self: center;
    transform: none;
  }

  .learning-card {
    padding: 36px 30px;
  }

  .video-section {
    padding: 96px 0 104px;
  }

  .next-step {
    padding: 56px 48px;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .profile {
    grid-template-columns: 280px 1fr;
    gap: 72px;
  }

  .profile__photo {
    width: 280px;
  }

  .closing {
    padding: 96px 0;
  }

  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1025px) {
  body {
    font-size: 17px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    align-items: center;
    gap: 64px;
  }

  .hero__title {
    font-size: clamp(42px, 4.2vw, 54px);
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
  }
}
