:root {
  --bg: #fbfbf4;
  --surface: #ffffff;
  --surface-soft: #f6f6f8;
  --surface-dark: #050606;
  --ink: #191c1d;
  --muted: #44474a;
  --line: #d9dad5;
  --lime: #d7e402;
  --lime-hover: #c5d203;
  --lime-soft: #f2f5d8;
  --focus: #5c6300;
  --shadow: 0 4px 20px rgba(15, 18, 20, 0.05);
  --shadow-hover: 0 12px 32px rgba(15, 18, 20, 0.08);
  --radius: 16px;
  --container: 1200px;
  --wide-container: 1307px;
  --font: Inter, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  transform: translateY(-160%);
}

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

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

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

.wide-container {
  width: min(100% - 80px, var(--wide-container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(23, 26, 28, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(100% - 48px, var(--wide-container));
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
}

.brand {
  position: absolute;
  left: 0;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.brand img {
  width: auto;
  height: 32px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 6px 0;
}

.nav a[aria-current="page"]::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--lime);
}

.nav .button {
  position: absolute;
  top: 50%;
  right: 0;
  padding: 0 18px;
  transform: translateY(-50%);
}

.nav .button:hover {
  transform: translateY(-50%);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.menu-toggle img {
  width: 24px;
  height: 24px;
  margin: auto;
}

.menu-toggle__close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__close {
  display: block;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.button-lime {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.button-lime:hover {
  border-color: var(--lime-hover);
  background: var(--lime-hover);
  color: var(--ink);
}

.button-outline {
  background: transparent;
  color: var(--ink);
}

.hero .button-outline,
.section-dark .button-outline,
.card-dark .button-outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.hero .button-outline {
  border-color: rgba(23, 26, 28, 0.18);
  color: var(--ink);
}

.button-outline:hover {
  color: #fff;
  background: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-eyebrows {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.eyebrow-outline {
  border: 1px solid rgba(23, 26, 28, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  background:
    radial-gradient(circle at 76% 24%, rgba(216, 239, 0, 0.34), transparent 34%),
    linear-gradient(135deg, #fbffdf 0%, #f3fac4 44%, #f8f9f1 100%);
  color: var(--ink);
  overflow: hidden;
}

.hero-inner {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 56px;
  align-items: center;
  padding: 84px 0;
}

.hero-title {
  margin: 24px 0 20px;
  max-width: 680px;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-title .accent {
  color: #5f7200;
}

.hero-lead {
  max-width: 620px;
  margin: 0 0 32px;
  color: #48514d;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-card {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(23, 26, 28, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.46)),
    #eef0f2;
  box-shadow: 0 26px 70px rgba(15, 18, 20, 0.16);
  padding: 26px;
  display: grid;
  align-content: center;
  overflow: hidden;
}

.hero-image-card {
  min-height: 0;
  padding: 0;
}

.hero-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-media {
  display: grid;
  gap: 16px;
}

.hero-store-row {
  justify-content: center;
}

.phone-panel {
  width: min(280px, 76%);
  aspect-ratio: 0.55;
  margin: 0 auto;
  border: 12px solid #0c0f10;
  border-radius: 36px;
  background:
    radial-gradient(circle at 60% 28%, rgba(216, 239, 0, 0.35), transparent 18%),
    linear-gradient(135deg, #1b2427, #071011);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
  position: relative;
}

.phone-panel::before,
.phone-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--lime);
}

.phone-panel::before {
  width: 54px;
  height: 54px;
  top: 28%;
  left: 24%;
  box-shadow: 76px 58px 0 rgba(216, 239, 0, 0.85), 34px 128px 0 rgba(216, 239, 0, 0.62);
}

.phone-panel::after {
  width: 70%;
  height: 12px;
  left: 15%;
  bottom: 24%;
  opacity: 0.9;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 56px 0;
}

.section-tight + .section {
  padding-top: 24px;
}

.section-dark {
  background: var(--surface-dark);
  color: #fff;
}

.section-soft {
  background: var(--surface-soft);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.container.section-head {
  max-width: var(--container);
}

.container.section-head p {
  max-width: 760px;
}

.section-head.left {
  text-align: left;
}

.compact-head {
  margin-bottom: 28px;
}

.full-head {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.section-head h1,
.section-head h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.16;
  letter-spacing: 0;
}

.section-head .eyebrow + h1,
.section-head .eyebrow + h2 {
  margin-top: 18px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.grid {
  display: grid;
  gap: 24px;
}

.flow {
  display: grid;
  gap: 24px;
}

.flow .section-head {
  margin-bottom: 20px;
}

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

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

.card {
  border: 1px solid rgba(23, 26, 28, 0.08);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 28px;
}

.card-dark {
  border-color: rgba(255, 255, 255, 0.08);
  background: #050606;
  color: #fff;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.35;
}

.card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.card code,
.media-policy-card code {
  font-family: var(--font);
  font-weight: 800;
}

.credit-examples {
  font-weight: 800;
}

.card-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--lime-soft);
  color: #4d5400;
  font-weight: 800;
  font-size: 0.75rem;
}

.app-card {
  display: grid;
  gap: 20px;
}

.app-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--surface-soft);
  object-fit: contain;
  padding: 12px;
}

.store-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.store-row img {
  width: auto;
  height: 40px;
}

.app-store-links {
  margin-bottom: 16px;
}

.hitoyasumimap-actions {
  margin-top: 16px;
}

.event-card {
  display: grid;
  gap: 8px;
  margin: 2px 0 22px;
  padding: 18px;
  border: 1px solid rgba(216, 239, 0, 0.78);
  border-radius: 16px;
  background: linear-gradient(135deg, #fbffdf 0%, #ffffff 100%);
}

.event-card h3,
.event-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.4;
}

.event-card p {
  margin: 0;
  color: #48514d;
  font-size: 0.94rem;
}

.event-label {
  width: fit-content;
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.5;
}

.app-event-card {
  margin-top: 22px;
}

.media-policy-card {
  display: grid;
  gap: 22px;
  padding: 30px;
  border: 1px solid rgba(23, 26, 28, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(251, 255, 223, 0.9), rgba(255, 255, 255, 0.96)),
    var(--surface);
  box-shadow: var(--shadow);
}

.media-policy-card h2 {
  margin: 14px 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.18;
}

.media-policy-card p {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
}

.screen-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: flex-start;
}

.screen-row img {
  width: min(190px, 45%);
  height: auto;
}

.app-screen-row {
  padding: 24px;
  border-radius: 24px;
  background: #101416;
  box-shadow: var(--shadow);
}

.app-screen-row img {
  max-height: 420px;
  object-fit: contain;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--lime);
  flex: 0 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.access-layout {
  align-items: stretch;
}

.access-layout > * {
  min-height: 100%;
}

.access-map {
  order: 1;
  display: grid;
}

.access-photo {
  order: 2;
}

.access-map .map-box {
  height: 100%;
}

.media-box {
  border-radius: 24px;
  overflow: hidden;
  background: #101416;
  box-shadow: var(--shadow);
}

.media-box img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.map-box {
  overflow: hidden;
  border: 1px solid rgba(23, 26, 28, 0.08);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.map-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.access-guide {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    url("/assets/company_access_ill.png") right 24px top 24px / 150px auto no-repeat,
    var(--surface);
}

.access-guide h3 {
  margin: 0 0 16px;
}

.access-guide .feature-list {
  max-width: 760px;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.table th {
  width: 32%;
  color: var(--muted);
  font-size: 0.92rem;
}

.form {
  display: grid;
  gap: 18px;
}

.form-page {
  display: grid;
  gap: 28px;
  max-width: 760px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #eef0f2;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 180px;
  resize: vertical;
}

.form-hidden {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.privacy-consent {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 14px;
  background: #eef0f2;
}

.privacy-consent h2 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

.privacy-consent ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
}

.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 800;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex: 0 0 auto;
}

.confirm-view {
  display: grid;
  gap: 20px;
}

.confirm-view h2,
.confirm-view p {
  margin: 0;
}

.confirm-actions {
  margin-top: 4px;
}

.complete-view {
  display: grid;
  gap: 18px;
}

.complete-view p {
  margin: 0;
  color: var(--muted);
}

.complete-view .button {
  justify-self: start;
}

.notice {
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--lime-soft);
  color: #383d00;
}

.error {
  border-radius: 14px;
  padding: 14px 16px;
  background: #ffe4e4;
  color: #8a1111;
}

.policy h2,
.policy h3 {
  margin-top: 34px;
}

.policy p {
  color: var(--muted);
}

.instacal-hero {
  padding: 88px 0 76px;
  background:
    radial-gradient(ellipse at 18% 45%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.48) 34%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.06) 42%, rgba(255, 255, 255, 0) 100%),
    url("/assets/instacal/hero_cafe_bg.png") left bottom / cover no-repeat,
    #f8f9fa;
  overflow: hidden;
}

.instacal-hero .container {
  width: min(100% - 40px, 1240px);
}

.instacal-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  gap: 48px;
  align-items: center;
}

.instacal-hero-copy h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.instacal-lockup {
  display: inline-flex;
  max-width: 100%;
  gap: 12px;
  align-items: center;
}

.instacal-lockup-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(35, 104, 179, 0.16);
  flex: 0 0 auto;
}

.instacal-logo-title {
  width: min(360px, calc(100% - 64px));
  height: auto;
}

.instacal-subtitle {
  max-width: 620px;
  margin: 0 0 18px;
  color: #263238;
  font-size: clamp(1.08rem, 2.4vw, 1.32rem);
  font-weight: 800;
  line-height: 1.65;
}

.instacal-lead {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--muted);
}

.instacal-store-row {
  margin: 0 0 32px;
}

.instacal-hero-media,
.instacal-app-image {
  border: 1px solid rgba(35, 104, 179, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(35, 60, 82, 0.14);
  overflow: hidden;
}

.instacal-hero-media {
  width: min(100%, 620px);
  justify-self: end;
  padding: 12px;
}

.instacal-hero-media img,
.instacal-app-image img {
  display: block;
  width: 100%;
  border-radius: 23px;
}

.instacal-hero-media img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff8ea;
}

.instacal-app-image img {
  aspect-ratio: 1024 / 500;
  object-fit: cover;
}

.instacal-value-card {
  position: relative;
  overflow: hidden;
}

.instacal-value-card::before {
  content: "";
  display: block;
  width: 72px;
  height: 6px;
  margin: 0 0 20px;
  border-radius: 999px;
  background: #2368b3;
}

.instacal-accent-red::before {
  background: #ed4751;
}

.instacal-accent-yellow::before {
  background: #f7c21c;
}

.instacal-feature-layout {
  align-items: start;
}

.instacal-feature-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.94)),
    var(--surface);
}

.instacal-screens-section {
  scroll-margin-top: 92px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(248, 249, 250, 1)),
    var(--bg);
}

.instacal-screen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.instacal-screen-card {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.instacal-screen-copy {
  display: grid;
  gap: 8px;
}

.instacal-screen-copy span {
  width: fit-content;
  padding: 2px 9px;
  border-radius: 999px;
  background: #d9ecff;
  color: #2368b3;
  font-size: 0.72rem;
  font-weight: 900;
}

.instacal-screen-card:nth-child(2) .instacal-screen-copy span {
  background: #ffe2e5;
  color: #bf2430;
}

.instacal-screen-card:nth-child(3) .instacal-screen-copy span {
  background: #fff1bb;
  color: #7a5c00;
}

.instacal-screen-copy h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.35;
}

.instacal-screen-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.instacal-phone-frame {
  width: min(100%, 300px);
  margin: 0 auto;
  padding: 8px;
  border-radius: 34px;
  background: #0b0d0f;
  box-shadow: 0 24px 60px rgba(20, 24, 28, 0.18);
}

.instacal-phone-frame img {
  width: 100%;
  aspect-ratio: 1206 / 2622;
  border-radius: 28px;
  object-fit: contain;
  background: #f7f4ee;
}

.instacal-usecase-section {
  background: var(--surface);
}

.instacal-usecase-grid {
  align-items: stretch;
}

.instacal-usecase-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  overflow: hidden;
}

.instacal-usecase-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: cover;
  background: #f7f4ee;
}

.instacal-usecase-copy {
  display: grid;
  gap: 7px;
}

.instacal-usecase-copy span {
  width: fit-content;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--lime-soft);
  color: #383d00;
  font-size: 0.78rem;
  font-weight: 900;
}

.instacal-usecase-copy h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.45;
}

.instacal-usecase-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.instacal-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.instacal-audience span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
}

.instacal-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(247, 251, 255, 0.96), rgba(255, 253, 245, 0.98)),
    var(--surface);
}

.instacal-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.22;
}

.instacal-cta p {
  margin: 0;
}

.instacal-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.instacal-cta-actions .store-row {
  justify-content: flex-end;
}

.site-footer {
  padding: 56px 0 28px;
  background: #050606;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(150px, 1fr));
  gap: 34px;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 14px;
}

.footer-grid p,
.footer-grid a,
.copyright {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--lime);
}

.copyright {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 64px;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 20px 22px;
    background: rgba(248, 249, 250, 0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }

  .brand {
    position: static;
  }

  .nav .button {
    position: static;
    transform: none;
  }

  .nav .button:hover {
    transform: none;
  }

  .nav.is-open {
    display: flex;
  }

  .hero-inner,
  .instacal-hero-inner,
  .split,
  .instacal-screen-grid,
  .grid-2,
  .grid-3,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 64px 0;
  }

  .section {
    padding: 64px 0;
  }

  .instacal-hero {
    padding: 64px 0;
  }

  .instacal-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .instacal-cta-actions,
  .instacal-cta-actions .store-row {
    justify-content: flex-start;
  }

  .instacal-screen-grid {
    gap: 34px;
  }

  .instacal-screen-card {
    grid-template-columns: minmax(0, 0.92fr) minmax(180px, 0.78fr);
    align-items: center;
  }

  .instacal-phone-frame {
    width: min(100%, 220px);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero-actions,
  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .store-row {
    align-items: center;
    flex-direction: row;
    justify-content: center;
  }

  .button {
    width: 100%;
  }

  .table th,
  .table td {
    display: block;
    width: 100%;
  }

  .table th {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .table td {
    padding-top: 0;
  }

  .instacal-hero-copy h1 {
    font-size: 2.45rem;
  }

  .instacal-logo-title {
    width: min(292px, calc(100% - 58px));
  }

  .instacal-lockup {
    gap: 10px;
  }

  .instacal-lockup-icon {
    width: 48px;
    height: 48px;
  }

  .instacal-hero-media {
    justify-self: center;
    padding: 8px;
    border-radius: 18px;
  }

  .instacal-hero-media img {
    border-radius: 17px;
  }

  .instacal-screen-card {
    grid-template-columns: 1fr;
  }

  .instacal-phone-frame {
    width: min(100%, 258px);
  }

}

/* 2026 renewal: shared editorial components */

.editorial-heading {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.editorial-heading h2 {
  margin: 0;
  padding-left: 14px;
  border-left: 3px solid var(--lime);
  font-size: clamp(1.55rem, 2.1vw, 1.65rem);
  line-height: 1.3;
}

.editorial-heading > p,
.editorial-heading > a {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.editorial-heading > a,
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  font-weight: 800;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.store-links a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.store-links img {
  width: auto;
  height: 40px;
}

.home-hero__actions .button::after,
.product-row__detail > a:not(.subtle-link)::after {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  background: url("/assets/icons/arrow-right.svg") center / contain no-repeat;
}

/* 2026 renewal: home */

.home-hero {
  background: #fafae9;
  overflow: hidden;
}

.home-hero__inner {
  min-height: 530px;
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(600px, 700px);
  gap: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 18px;
}

.home-hero__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  align-self: start;
  padding-top: 40px;
}

.home-hero__copy h1 {
  order: 1;
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.75rem, 3.35vw, 3.1rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.home-hero__copy > p {
  order: 2;
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.home-hero__actions {
  order: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.home-hero__release {
  order: 4;
  width: min(100%, 520px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(25, 28, 29, 0.14);
}

.release-chip,
.release-name {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.release-chip {
  padding: 4px 12px;
  background: var(--lime);
}

.release-name {
  padding: 4px 2px;
}

.home-hero__media {
  min-width: 0;
  display: grid;
  gap: 14px;
  align-content: center;
}

.home-hero__media picture {
  display: block;
  aspect-ratio: 700 / 433;
  overflow: hidden;
  border: 1px solid rgba(25, 28, 29, 0.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.home-hero__media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__stores {
  justify-content: center;
}

.home-products {
  padding: 23px 0 0;
  background: var(--surface);
  scroll-margin-top: 84px;
}

.product-catalog {
  border-top: 1px solid var(--line);
}

.product-row {
  display: grid;
  grid-template-columns: 60px minmax(170px, 190px) minmax(260px, 1fr) 96px 290px;
  gap: 24px;
  align-items: center;
  min-width: 0;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.product-row__icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  object-fit: cover;
}

.product-row__identity {
  min-width: 0;
}

.product-row__identity h3 {
  margin: 5px 0 0;
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  line-height: 1.35;
}

.product-tag {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 2px 10px;
  border: 1px solid rgba(92, 99, 0, 0.3);
  border-radius: 999px;
  color: #5c6300;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.3;
}

.product-tag--blue {
  border-color: rgba(35, 104, 179, 0.28);
  color: #2368b3;
}

.product-row__summary {
  min-width: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.product-row__detail {
  min-width: 0;
}

.product-row__detail a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.product-row__detail--stack {
  display: grid;
  gap: 2px;
}

.product-row__detail .subtle-link {
  border-bottom: 0;
  color: var(--muted);
  font-size: 0.72rem;
  white-space: normal;
}

.product-row__stores {
  justify-content: flex-end;
}

.product-row__stores img {
  height: 36px;
}

.product-archive {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  margin-top: 18px;
  padding: 22px 0 26px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
  box-shadow: 50vw 0 0 var(--surface-soft), -50vw 0 0 var(--surface-soft);
}

.product-archive > h2 {
  margin: 0;
  padding-left: 14px;
  border-left: 3px solid var(--ink);
  font-size: 1.25rem;
  line-height: 1.35;
}

.product-archive__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-archive__list li {
  min-width: 0;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 0 22px;
  border-left: 1px solid var(--line);
}

.product-archive__list li:first-child {
  border-left: 0;
}

.product-archive__list img {
  width: 52px;
  height: 52px;
  border-radius: 13px;
}

.product-archive__list span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.product-archive__list h3 {
  margin: 2px 0 0;
  font-size: 1rem;
  line-height: 1.35;
}

.product-archive__list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.home-business {
  padding: 92px 0;
  background: var(--bg);
}

.home-business__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-business__grid article {
  padding: 30px 28px 30px 0;
}

.home-business__grid article + article {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.home-business__grid span {
  color: #6a7200;
  font-size: 0.72rem;
  font-weight: 900;
}

.home-business__grid h3 {
  margin: 10px 0 12px;
  font-size: 1.25rem;
  line-height: 1.45;
}

.home-business__grid p {
  margin: 0;
  color: var(--muted);
}

.home-business .text-link {
  margin-top: 28px;
}

.home-contact {
  padding: 72px 0;
  background: var(--ink);
  color: #fff;
}

.home-contact__inner {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
}

.home-contact h2 {
  margin: 18px 0 8px;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.25;
}

.home-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.home-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.home-contact .button-outline {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}

/* 2026 renewal: shared interior pages */

.page-standard main > .section-tight:first-child {
  padding: 64px 0 52px;
  background: #fafae9;
}

.page-standard main > .section-tight:first-child .section-head {
  margin-bottom: 0;
}

.page-standard main > .section-tight + .section {
  padding-top: 64px;
}

.page-standard .section-head.left h1 {
  font-size: clamp(2.7rem, 6vw, 4.75rem);
  line-height: 1.08;
}

.page-standard .card,
.page-standard .media-policy-card,
.page-standard .map-box,
.page-standard .media-box {
  box-shadow: var(--shadow);
}

/* 2026 renewal: applications */

.apps-intro {
  padding: 72px 0 64px;
  background: #fafae9;
}

.apps-intro h1 {
  margin: 18px 0 12px;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
}

.apps-intro p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.apps-catalog-section {
  padding: 64px 0 96px;
  background: var(--surface);
}

.product-catalog--detailed {
  display: grid;
  gap: 28px;
  border-top: 0;
}

.product-panel {
  scroll-margin-top: 88px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.product-panel > .product-row {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.product-panel__extra {
  padding: 24px;
  background: var(--surface-soft);
}

.product-panel__extra h4,
.season-event h4 {
  margin: 10px 0 8px;
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  line-height: 1.4;
}

.product-panel__extra p,
.season-event p {
  margin: 0;
  color: var(--muted);
}

.product-panel__extra--hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(420px, 1.3fr);
  gap: 28px;
  align-items: center;
}

.product-panel__extra--hero picture {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
}

.product-panel__extra--hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.season-event {
  padding: 22px;
  border: 1px solid rgba(215, 228, 2, 0.72);
  border-radius: 16px;
  background: #fffef1;
}

.product-panel__extra--media,
.product-panel__extra--screens {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(420px, 1.22fr);
  gap: 28px;
  align-items: center;
}

.product-panel__extra--media > img {
  width: 100%;
  border-radius: 16px;
}

.product-panel__extra--screens .screen-row {
  flex-wrap: nowrap;
  gap: 16px;
}

.product-panel__extra--screens .screen-row img {
  width: min(180px, 45%);
  max-height: 360px;
  object-fit: contain;
}

.product-archive--detailed {
  display: block;
  margin-top: 64px;
  padding: 28px;
  border: 0;
  border-radius: 20px;
  box-shadow: none;
}

.product-archive--detailed .editorial-heading {
  margin-bottom: 24px;
}

.product-archive--detailed .product-archive__list li {
  align-items: flex-start;
}

@media (max-width: 1380px) {
  .home-hero__inner {
    grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
    gap: 44px;
  }

  .home-hero__copy {
    align-self: center;
    padding-top: 0;
  }
}

@media (max-width: 1180px) {
  .wide-container {
    width: min(100% - 64px, var(--wide-container));
  }

  .product-row {
    grid-template-columns: 64px minmax(210px, 280px) minmax(0, 1fr);
    grid-template-areas:
      "icon identity summary"
      "icon detail stores";
    row-gap: 8px;
  }

  .product-row__icon {
    grid-area: icon;
  }

  .product-row__identity {
    grid-area: identity;
  }

  .product-row__summary {
    grid-area: summary;
  }

  .product-row__detail {
    grid-area: detail;
  }

  .product-row__stores {
    grid-area: stores;
    justify-self: end;
  }

  .product-archive {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 20px;
  }

  .product-archive__list li {
    padding: 0 14px;
  }
}

@media (max-width: 1024px) {
  .home-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    padding: 48px 0 40px;
  }

  .home-hero__copy {
    width: min(100%, 720px);
  }

  .home-hero__media {
    width: min(100%, 760px);
    justify-self: center;
  }
}

@media (max-width: 860px) {
  .wide-container {
    width: min(100% - 48px, var(--wide-container));
  }

  .header-inner {
    min-height: 56px;
  }

  .brand img {
    height: 28px;
  }

  .nav {
    top: 56px;
    display: flex;
    max-height: calc(100dvh - 56px);
    overflow-y: auto;
  }

  .js .nav {
    display: none;
  }

  .js .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav .button {
    width: 100%;
    justify-content: center;
  }

  .home-hero__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0 36px;
  }

  .home-hero__release {
    order: 1;
    width: auto;
    margin: 0 0 28px;
    padding: 0;
    border-top: 0;
  }

  .home-hero__copy h1 {
    order: 2;
    font-size: clamp(2.2rem, 7.4vw, 3.6rem);
  }

  .home-hero__copy > p {
    order: 3;
  }

  .home-hero__actions {
    order: 4;
  }

  .home-hero__media {
    width: 100%;
  }

  .home-products {
    padding-top: 40px;
  }

  .product-catalog {
    display: grid;
    gap: 18px;
    border-top: 0;
  }

  .product-row {
    grid-template-columns: 64px minmax(0, 1fr);
    grid-template-areas:
      "icon identity"
      ". summary"
      ". detail"
      ". stores";
    gap: 12px 18px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
  }

  .product-row__stores {
    justify-self: start;
    justify-content: flex-start;
  }

  .product-row__detail {
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .product-archive {
    display: block;
    margin-top: 28px;
    padding: 24px;
    border-radius: 16px;
    box-shadow: none;
  }

  .product-archive > h2 {
    margin-bottom: 20px;
  }

  .product-archive__list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-archive__list li,
  .product-archive__list li:first-child {
    padding: 14px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .home-business {
    padding: 72px 0;
  }

  .home-business__grid {
    grid-template-columns: 1fr;
  }

  .home-business__grid article,
  .home-business__grid article + article {
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .home-business__grid article:first-child {
    border-top: 0;
  }

  .home-contact__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-contact__actions {
    justify-content: flex-start;
  }

  .product-panel {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .product-panel > .product-row {
    border: 1px solid var(--line);
  }

  .product-panel__extra,
  .product-panel__extra--hero,
  .product-panel__extra--media,
  .product-panel__extra--screens {
    grid-template-columns: 1fr;
    margin-top: 12px;
    border-radius: 16px;
  }

  .product-panel__extra--screens .screen-row {
    justify-content: flex-start;
  }

  .product-archive--detailed {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .container,
  .wide-container {
    width: min(100% - 48px, var(--wide-container));
  }

  .site-header {
    backdrop-filter: none;
  }

  .home-hero__inner {
    gap: 18px;
    padding: 20px 0 5px;
  }

  .home-hero__copy h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .home-hero__copy > p {
    margin-top: 8px;
    font-size: 0.84rem;
    line-height: 1.68;
  }

  .home-hero__actions {
    width: 100%;
    flex-direction: column;
    margin-top: 12px;
  }

  .home-hero__actions .button {
    min-height: 44px;
  }

  .home-hero__release {
    gap: 10px;
    margin-bottom: 10px;
  }

  .release-chip,
  .release-name {
    font-size: 0.72rem;
  }

  .home-hero__media picture {
    aspect-ratio: 747 / 516;
    border-radius: 18px;
  }

  .home-hero__stores {
    display: none;
  }

  .home-products {
    padding-top: 14px;
  }

  .home-products .editorial-heading {
    margin-bottom: 8px;
  }

  .home-products .editorial-heading > a {
    display: none;
  }

  .editorial-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .editorial-heading h2 {
    font-size: 1.25rem;
  }

  .product-row {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 8px 16px;
    padding: 16px;
  }

  .product-row__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .product-row__identity h3 {
    font-size: 1.05rem;
  }

  .product-row__summary {
    font-size: 0.8rem;
    line-height: 1.55;
  }

  .store-links {
    gap: 8px;
  }

  .store-links img {
    height: 32px;
  }

  .product-archive {
    padding: 22px 18px;
  }

  .product-archive__list h3 {
    font-size: 0.98rem;
  }

  .home-business {
    padding: 64px 0;
  }

  .home-contact {
    padding: 64px 0;
  }

  .home-contact__actions {
    width: 100%;
    flex-direction: column;
  }

  .apps-intro {
    padding: 56px 0 48px;
  }

  .apps-intro h1 {
    font-size: 3rem;
  }

  .apps-catalog-section {
    padding: 48px 0 72px;
  }

  .product-panel__extra {
    padding: 18px;
  }

  .season-event {
    padding: 18px;
  }

  .product-panel__extra--screens .screen-row {
    justify-content: center;
  }
}

@media (max-width: 340px) {
  .container,
  .wide-container {
    width: min(100% - 32px, var(--wide-container));
  }

  .product-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "identity"
      "summary"
      "detail"
      "stores";
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
