:root {
  color-scheme: light;
  --ink: #10233a;
  --ink-soft: #5c6b7b;
  --blue: #1678dc;
  --blue-dark: #0a3f78;
  --blue-light: #eaf4ff;
  --green: #1a9b75;
  --green-light: #eaf8f3;
  --paper: #f7f9fc;
  --surface: #ffffff;
  --line: #dfe7ef;
  --shadow: rgba(19, 47, 79, 0.12);
  --content-width: 1160px;
  --radius-large: 36px;
  --radius-medium: 24px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic UI",
    "Yu Gothic", "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

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

.container {
  width: min(calc(100% - 48px), var(--content-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #ffffff;
  background: var(--blue-dark);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(16, 35, 58, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  box-shadow: 0 7px 18px rgba(16, 35, 58, 0.18);
}

.brand-name,
.brand-subtitle {
  display: block;
}

.brand-name {
  font-size: 14px;
  font-weight: 780;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.brand-subtitle {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-link {
  color: #425268;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.language-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-dark);
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.language-link:hover {
  border-color: rgba(22, 120, 220, 0.4);
  color: var(--blue);
}

.header-link:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--blue);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.3;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.landing-hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 82px 0 74px;
  background:
    radial-gradient(circle at 82% 20%, rgba(32, 158, 117, 0.16), transparent 24%),
    radial-gradient(circle at 18% 8%, rgba(22, 120, 220, 0.13), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
}

.landing-hero::before {
  position: absolute;
  right: -110px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(22, 120, 220, 0.12);
  border-radius: 50%;
  content: "";
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: 84px;
}

.app-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.app-label img {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(13, 61, 111, 0.22);
}

.app-label .eyebrow {
  margin-bottom: 3px;
}

.app-label p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.landing-hero h1 span {
  color: var(--blue);
}

.landing-lead {
  max-width: 600px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 19px;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.app-store-button {
  display: inline-flex;
  min-width: 185px;
  min-height: 60px;
  align-items: center;
  gap: 11px;
  padding: 8px 19px;
  border-radius: 13px;
  color: #ffffff;
  background: #101010;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.app-store-button.is-disabled {
  cursor: default;
  opacity: 0.62;
}

.apple-mark {
  font-size: 29px;
}

.app-store-button small,
.app-store-button strong {
  display: block;
}

.app-store-button small {
  margin-bottom: 4px;
  font-size: 10px;
  letter-spacing: 0.03em;
}

.app-store-button strong {
  font-size: 22px;
  letter-spacing: -0.02em;
}

.launch-note {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.hero-showcase {
  position: relative;
  min-height: 610px;
}

.hero-glow {
  position: absolute;
  inset: 80px 20px 40px 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(22, 120, 220, 0.2), rgba(26, 155, 117, 0.2));
  filter: blur(12px);
}

.hero-screen {
  position: absolute;
  display: block;
  width: min(58%, 300px);
  height: auto;
  object-fit: contain;
  border-radius: 26px;
  box-shadow: 0 32px 70px rgba(13, 47, 80, 0.24);
}

.hero-screen-front {
  z-index: 2;
  top: 0;
  left: 3%;
  transform: rotate(-3deg);
}

.hero-screen-back {
  right: 0;
  bottom: 0;
  transform: rotate(5deg);
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 52px;
}

.section-heading > p:last-child {
  color: var(--ink-soft);
  font-size: 17px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.free-feature-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 10px 16px;
  border: 1px solid rgba(26, 155, 117, 0.18);
  border-radius: 999px;
  color: #246653 !important;
  background: var(--green-light);
  font-size: 14px !important;
  font-weight: 700;
}

.free-feature-note span {
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--green);
  font-size: 12px;
  white-space: nowrap;
}

.story-section {
  background: #ffffff;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 100px;
}

.story-heading {
  position: sticky;
  top: 120px;
}

.story-heading h2 {
  font-size: clamp(35px, 4.2vw, 54px);
}

.story-copy {
  padding-left: 40px;
  border-left: 1px solid var(--line);
}

.story-copy p {
  margin-bottom: 30px;
  color: #405168;
  font-size: 19px;
}

.story-copy strong {
  color: var(--blue-dark);
  background: linear-gradient(transparent 63%, rgba(26, 155, 117, 0.22) 63%);
}

.features-section {
  background: var(--paper);
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  padding: 42px 42px 0;
  border: 1px solid rgba(16, 35, 58, 0.06);
  border-radius: var(--radius-large);
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(30, 58, 89, 0.07);
}

.feature-card-wide {
  display: grid;
  min-height: 640px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
  align-items: center;
  gap: 32px;
  padding: 54px 60px 0;
}

.feature-copy {
  position: relative;
  z-index: 3;
}

.feature-copy p {
  color: var(--ink-soft);
}

.feature-number {
  display: inline-block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.feature-labels {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.free-pill {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  color: #126147;
  background: #dff6ed;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.feature-images {
  display: flex;
  height: 470px;
  align-items: flex-start;
  justify-content: center;
  margin-top: 30px;
}

.feature-images img {
  display: block;
  width: min(78%, 245px);
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 24px 52px rgba(19, 49, 79, 0.18);
}

.feature-images.two-screens {
  gap: 22px;
}

.feature-images.two-screens img {
  width: min(43%, 235px);
}

.feature-images.two-screens img:nth-child(2) {
  margin-top: 50px;
}

.feature-card-wide .feature-images {
  height: 570px;
  margin-top: 0;
}

.premium-feature-images {
  gap: 24px;
  align-items: center;
}

.premium-feature-images img.phone-preview {
  width: min(36%, 220px);
}

.premium-feature-images img.report-preview {
  width: min(57%, 340px);
  border-radius: 12px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.premium-feature {
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 20%, rgba(69, 191, 151, 0.24), transparent 27%),
    linear-gradient(145deg, #071a31 0%, #0b3157 100%);
}

.premium-feature .feature-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.premium-pill {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 6px 13px;
  border-radius: 999px;
  color: #062a23;
  background: #6ee0ba;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 10%, rgba(37, 137, 235, 0.34), transparent 30%),
    linear-gradient(145deg, #07162b 0%, #092f54 55%, #0d675a 130%);
}

.premium-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 90px;
}

.premium-section .eyebrow {
  color: #6ee0ba;
}

.free-plan-badge {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 15px;
  border-radius: 999px;
  color: #073d32;
  background: #6ee0ba;
  font-size: 14px;
  font-weight: 850;
}

.free-plan-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.free-plan-list li {
  padding: 8px 14px;
  border: 1px solid rgba(110, 224, 186, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 750;
}

.premium-lead {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.69);
}

.premium-option {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(4, 21, 39, 0.44);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
}

.premium-option-label {
  margin-bottom: 6px;
  color: #6ee0ba;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.premium-option h3 {
  margin-bottom: 8px;
  font-size: 30px;
}

.premium-option-description {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.premium-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.premium-list li {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.premium-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.premium-list span {
  color: #6ee0ba;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.premium-list strong {
  font-size: 17px;
}

.premium-purchase {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}

.premium-purchase p {
  margin: 0;
}

.premium-purchase strong,
.premium-purchase span {
  display: block;
}

.premium-purchase strong {
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.premium-purchase span {
  color: #6ee0ba;
  font-size: 12px;
  font-weight: 800;
}

.premium-purchase small {
  max-width: 155px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  line-height: 1.5;
  text-align: right;
}

.premium-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: 64px;
  margin-top: 90px;
  padding-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.premium-showcase-copy p:last-child {
  max-width: 510px;
  color: rgba(255, 255, 255, 0.7);
}

.premium-showcase-media {
  display: grid;
  grid-template-columns: minmax(140px, 0.48fr) minmax(320px, 1.52fr);
  align-items: end;
  gap: 28px;
}

.premium-showcase-media figure {
  position: relative;
  margin: 0;
}

.premium-showcase-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}

.premium-showcase-media figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.premium-phone-shot {
  max-width: 230px;
  justify-self: end;
}

.premium-report-stack {
  min-height: 480px;
  padding-right: 68px;
}

.premium-report-stack img:first-child {
  position: relative;
  z-index: 2;
}

.premium-report-stack img:nth-child(2) {
  position: absolute;
  z-index: 1;
  top: 38px;
  left: 68px;
  width: calc(100% - 68px);
  opacity: 0.86;
}

.premium-report-stack figcaption {
  position: relative;
  z-index: 3;
}

.audience-section {
  background: var(--green-light);
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-list li {
  padding: 15px 22px;
  border: 1px solid rgba(26, 155, 117, 0.2);
  border-radius: 999px;
  color: #14664f;
  background: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.developer-section {
  background: #ffffff;
}

.developer-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 60px;
  padding: 64px 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 100% 0%, rgba(22, 120, 220, 0.09), transparent 32%),
    #ffffff;
  box-shadow: 0 24px 60px rgba(19, 49, 79, 0.08);
}

.developer-avatar-link {
  display: block;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  box-shadow: 0 22px 45px rgba(17, 92, 145, 0.22);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.developer-avatar-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 27px 52px rgba(17, 92, 145, 0.28);
}

.developer-avatar {
  display: block;
  width: 100%;
  height: 100%;
  border: 4px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
}

.developer-copy {
  max-width: 700px;
}

.developer-tagline {
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: 21px;
  font-weight: 800;
}

.developer-copy > p:not(.eyebrow, .developer-tagline) {
  color: var(--ink-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.support-section {
  background: var(--blue-light);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.7fr);
  align-items: start;
  gap: 72px;
}

.support-layout > div:first-child > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--ink-soft);
}

.support-note {
  padding: 32px;
  border: 1px solid rgba(22, 120, 220, 0.16);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.82);
}

.support-note h3 {
  font-size: 19px;
}

.support-note ul {
  margin: 12px 0 0;
  padding-left: 1.3em;
  color: var(--ink-soft);
}

.support-note a {
  color: var(--blue-dark);
  font-weight: 750;
}

/* App support pages */
.app-support-hero {
  padding: 68px 0;
  color: #ffffff;
  background: linear-gradient(145deg, #0647d8 0%, #078ee8 56%, #12c6d5 100%);
}

.app-support-hero .eyebrow {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.76);
}

.app-support-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(40px, 6vw, 68px);
}

.app-support-hero p:last-child {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.app-support-section {
  padding: 72px 0 96px;
  background: var(--paper);
}

.app-support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 48px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item,
.app-support-aside {
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(7, 26, 54, 0.07);
}

.faq-item {
  padding: 28px 30px;
}

.faq-item h2 {
  margin-bottom: 10px;
  color: #0c4f9f;
  font-size: 20px;
}

.faq-item p {
  color: var(--ink-soft);
}

.faq-item a,
.app-support-aside a:not(.button) {
  color: #0b62bd;
  font-weight: 700;
}

.app-support-aside {
  position: sticky;
  top: 98px;
  padding: 28px;
}

.app-support-aside h2 {
  font-size: 21px;
}

.app-support-aside p {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 14px;
}

.app-support-aside .button {
  width: 100%;
}

/* NudgeGoo support */
.nudgegoo-page .header-nav {
  gap: 20px;
}

.nudgegoo-page #story,
.nudgegoo-page #features,
.nudgegoo-page #faq,
.nudgegoo-page #contact {
  scroll-margin-top: 92px;
}

.nudgegoo-hero {
  overflow: hidden;
  padding: 78px 0 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(119, 239, 229, 0.35), transparent 24%),
    linear-gradient(145deg, #0647d8 0%, #078ee8 58%, #12b9ce 100%);
}

.nudgegoo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 76px;
}

.nudgegoo-hero-copy {
  padding-bottom: 78px;
}

.nudgegoo-hero .app-label {
  margin-bottom: 24px;
}

.nudgegoo-hero .app-label img {
  box-shadow: 0 18px 38px rgba(3, 46, 106, 0.3);
}

.nudgegoo-hero .app-label p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.nudgegoo-hero h1 {
  margin-bottom: 24px;
}

.nudgegoo-hero .nudgegoo-catch {
  max-width: 720px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: clamp(25px, 3vw, 39px);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.nudgegoo-hero .nudgegoo-hero-description {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

.nudgegoo-store-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.nudgegoo-store-actions .app-store-button.is-disabled {
  cursor: default;
  opacity: 0.88;
  user-select: none;
}

.nudgegoo-store-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 750;
}

.nudgegoo-hero-visual {
  align-self: end;
  max-width: 330px;
  margin: 0 auto -118px;
}

.nudgegoo-hero-visual img,
.nudgegoo-screen img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 28px 64px rgba(5, 38, 78, 0.28);
}

.nudgegoo-intro {
  padding: 190px 0 112px;
  background: #ffffff;
}

.nudgegoo-intro .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.nudgegoo-intro .story-heading h2 {
  font-size: clamp(34px, 3.3vw, 44px);
}

.nudgegoo-features-heading {
  margin-top: 128px;
}

.nudgegoo-feature-list {
  margin-top: 70px;
}

.nudgegoo-feature {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: 96px;
  padding: 76px 64px;
  border-top: 1px solid var(--line);
}

.nudgegoo-feature:last-child {
  border-bottom: 1px solid var(--line);
}

.nudgegoo-feature:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.72fr);
}

.nudgegoo-feature:nth-child(even) .nudgegoo-screen {
  order: 2;
}

.nudgegoo-screen {
  width: min(100%, 300px);
  margin: 0 auto;
}

.nudgegoo-screen img {
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(16, 35, 58, 0.18);
}

.nudgegoo-feature-copy {
  max-width: 570px;
}

.nudgegoo-feature-number {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.nudgegoo-feature-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(27px, 3vw, 39px);
}

.nudgegoo-feature-copy p:last-child {
  color: var(--ink-soft);
  font-size: 17px;
}

.nudgegoo-privacy-note {
  max-width: 850px;
  margin: 88px auto 0;
  padding: 46px 52px;
  border: 1px solid rgba(22, 120, 220, 0.18);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 100% 0%, rgba(18, 198, 213, 0.14), transparent 36%),
    var(--blue-light);
  text-align: center;
}

.nudgegoo-privacy-note h3 {
  margin-bottom: 14px;
  font-size: clamp(25px, 3vw, 34px);
}

.nudgegoo-privacy-note p:last-child {
  color: #405168;
}

.nudgegoo-privacy-note a {
  color: #0b62bd;
  font-weight: 750;
}

.nudgegoo-support-section {
  padding-top: 104px;
}

.nudgegoo-support-section > .container > .section-heading {
  margin-bottom: 42px;
}

.nudgegoo-support-section .faq-item h3 {
  margin-bottom: 10px;
  color: #0c4f9f;
  font-size: 20px;
}

.nudgegoo-support-section .app-support-aside h2 {
  margin-bottom: 14px;
}

/* App directory */
.directory-hero {
  background: linear-gradient(145deg, #071a36 0%, #115da8 55%, #12aebf 100%);
}

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

.app-directory-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(7, 26, 54, 0.08);
}

.app-directory-card h2 {
  margin-bottom: 12px;
  font-size: clamp(27px, 3vw, 38px);
}

.app-directory-card > p:not(.eyebrow) {
  min-height: 58px;
  color: var(--ink-soft);
}

.directory-app-icon {
  display: block;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(7, 26, 54, 0.2);
}

.directory-wordmark {
  display: flex;
  height: 72px;
  align-items: center;
  margin-bottom: 24px;
  color: #087fe7;
  font-size: 30px;
  font-weight: 850;
}

.directory-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.directory-actions .text-link {
  margin-top: 0;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 780;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(0, 83, 170, 0.24);
}

.button-primary:hover {
  background: #0c62b8;
}

.button-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: #ffffff;
}

.button:focus-visible,
.header-link:focus-visible,
.brand:focus-visible,
.developer-avatar-link:focus-visible,
.text-link:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid #f0b62c;
  outline-offset: 3px;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.66);
  background: #061426;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand {
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 780;
}

.footer-meta {
  text-align: right;
}

.footer-meta a {
  display: inline-block;
  margin: 0 0 5px 18px;
  text-decoration: none;
}

/* Privacy policy */
.privacy-hero {
  padding: 68px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 18%, rgba(38, 134, 244, 0.42), transparent 30%),
    linear-gradient(145deg, #061326 0%, #09264a 58%, #0c4481 100%);
}

.privacy-hero-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.privacy-app-icon {
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 23%;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.privacy-hero .eyebrow {
  margin-bottom: 4px;
  color: #65c5ff;
}

.privacy-hero h1 {
  margin-bottom: 8px;
  font-size: clamp(34px, 5vw, 54px);
}

.privacy-app-name {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 750;
}

.privacy-updated {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.65;
}

.privacy-section {
  padding: 72px 0 96px;
  background: var(--paper);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 48px;
}

.privacy-article {
  min-width: 0;
  padding: 44px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(7, 26, 54, 0.08);
}

.privacy-article > p:first-child {
  margin-bottom: 36px;
  font-size: 17px;
}

.privacy-article section {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.privacy-article section + section {
  margin-top: 30px;
}

.privacy-article h2 {
  margin-bottom: 18px;
  color: #0c4f9f;
  font-size: 22px;
}

.privacy-article section[lang] h3 {
  margin-top: 30px;
  color: var(--ink);
  font-size: 18px;
}

.privacy-article p,
.privacy-article li {
  color: var(--ink-soft);
}

.privacy-article p {
  margin-bottom: 14px;
}

.privacy-article ul {
  display: grid;
  margin: 20px 0 24px;
  padding-left: 1.4em;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 28px;
}

.privacy-article section[lang] ul {
  grid-template-columns: 1fr;
}

.privacy-article a {
  color: #0b62bd;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.privacy-aside {
  position: sticky;
  top: 98px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(7, 26, 54, 0.07);
}

.privacy-aside img {
  width: 72px;
  height: 72px;
  border-radius: 22%;
  box-shadow: 0 9px 22px rgba(7, 26, 54, 0.2);
}

.privacy-aside-title {
  margin: 14px 0 8px;
  font-weight: 800;
}

.privacy-aside p:not(.privacy-aside-title) {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 14px;
}

.privacy-aside .button {
  width: 100%;
}

@media (max-width: 900px) {
  .nudgegoo-page .header-link:nth-child(-n + 3) {
    display: none;
  }

  .nudgegoo-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.6fr);
    gap: 40px;
  }

  .nudgegoo-feature {
    gap: 52px;
    padding-inline: 24px;
  }

  .landing-hero-grid,
  .story-layout,
  .premium-layout,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .landing-hero-grid {
    gap: 50px;
  }

  .hero-showcase {
    width: min(100%, 590px);
    margin-inline: auto;
  }

  .story-layout {
    gap: 34px;
  }

  .story-heading {
    position: static;
  }

  .story-copy {
    padding-left: 0;
    border-left: 0;
  }

  .feature-card-wide {
    grid-template-columns: 1fr;
  }

  .feature-card-wide .feature-copy {
    max-width: 650px;
  }

  .premium-layout {
    gap: 48px;
  }

  .premium-showcase {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .premium-showcase-copy p:last-child {
    max-width: 650px;
  }

  .developer-card {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 38px;
    padding: 48px;
  }

  .developer-avatar-link {
    width: 140px;
    height: 140px;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-aside {
    position: static;
  }
}

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

  .site-header {
    background: #ffffff;
    backdrop-filter: none;
  }

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

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-subtitle {
    font-size: 9px;
  }

  .header-nav {
    display: flex;
    gap: 8px;
  }

  .header-link {
    display: none;
  }

  .language-link {
    min-height: 32px;
    padding-inline: 10px;
  }

  .landing-hero {
    min-height: auto;
    padding: 52px 0 58px;
  }

  .landing-hero-grid {
    gap: 30px;
  }

  .landing-hero-copy {
    min-width: 0;
  }

  .app-label {
    gap: 14px;
    margin-bottom: 24px;
  }

  .app-label img {
    width: 72px;
    height: 72px;
    border-radius: 19px;
  }

  .app-label .eyebrow {
    font-size: 10px;
  }

  .app-label p:last-child {
    font-size: 12px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  h2 {
    font-size: 33px;
  }

  .landing-lead {
    font-size: 16px;
  }

  .landing-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-showcase {
    display: flex;
    min-height: 0;
    height: 410px;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    margin-top: 6px;
    overflow: hidden;
  }

  .hero-screen {
    position: relative;
    inset: auto;
    width: min(46%, 175px);
    flex: 0 0 min(46%, 175px);
    border-radius: 18px;
    transform: none;
  }

  .hero-screen-front {
    order: 1;
  }

  .hero-screen-back {
    order: 2;
    margin-top: 34px;
  }

  .section {
    padding: 76px 0;
  }

  .story-copy p {
    margin-bottom: 24px;
    font-size: 17px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading.centered {
    text-align: left;
  }

  .free-feature-note {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 18px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card,
  .feature-card-wide {
    display: block;
    min-height: 600px;
    padding: 30px 24px 0;
    grid-column: auto;
    border-radius: 28px;
  }

  .feature-card h3 {
    font-size: 23px;
  }

  .feature-images,
  .feature-card-wide .feature-images {
    height: 400px;
    margin-top: 28px;
  }

  .feature-images img {
    width: min(75%, 215px);
  }

  .feature-images.two-screens {
    gap: 12px;
  }

  .feature-images.two-screens img {
    width: min(46%, 178px);
    border-radius: 15px;
  }

  .feature-images.two-screens img:nth-child(2) {
    margin-top: 32px;
  }

  .premium-feature-images {
    align-items: center;
    gap: 14px;
  }

  .premium-feature-images img.phone-preview {
    width: min(38%, 155px);
  }

  .premium-feature-images img.report-preview {
    width: min(58%, 238px);
  }

  .premium-option {
    padding: 28px 22px;
  }

  .premium-purchase {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .premium-purchase small {
    max-width: none;
    text-align: left;
  }

  .premium-showcase {
    margin-top: 62px;
    padding-top: 52px;
  }

  .premium-showcase-media {
    grid-template-columns: minmax(95px, 0.42fr) minmax(190px, 1.58fr);
    gap: 14px;
  }

  .premium-report-stack {
    min-height: 300px;
    padding-right: 30px;
  }

  .premium-report-stack img:nth-child(2) {
    top: 22px;
    left: 30px;
    width: calc(100% - 30px);
  }

  .audience-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .audience-list li {
    border-radius: 18px;
  }

  .developer-card {
    display: block;
    padding: 34px 24px;
    border-radius: 28px;
  }

  .developer-avatar-link {
    width: 92px;
    height: 92px;
    margin-bottom: 28px;
  }

  .support-layout {
    gap: 38px;
  }

  .support-layout .button {
    width: 100%;
  }

  .support-note {
    padding: 26px 22px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }

  .footer-meta a {
    display: block;
    margin: 0 0 7px;
  }

  .privacy-hero {
    padding: 48px 0;
  }

  .privacy-hero-inner {
    display: block;
  }

  .privacy-app-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
  }

  .privacy-hero h1 {
    font-size: 31px;
  }

  .privacy-app-name {
    font-size: 14px;
  }

  .privacy-updated {
    font-size: 12px;
  }

  .privacy-section {
    padding: 42px 0 64px;
  }

  .privacy-layout {
    gap: 24px;
  }

  .app-support-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nudgegoo-hero {
    padding: 52px 0 0;
  }

  .nudgegoo-hero-grid {
    display: block;
  }

  .nudgegoo-hero-copy {
    padding-bottom: 38px;
  }

  .nudgegoo-hero .nudgegoo-catch {
    font-size: 24px;
  }

  .nudgegoo-hero .nudgegoo-hero-description {
    font-size: 15px;
  }

  .nudgegoo-store-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
  }

  .nudgegoo-hero-visual {
    width: min(78%, 280px);
    margin-bottom: -86px;
  }

  .nudgegoo-hero-visual img,
  .nudgegoo-screen img {
    border-radius: 22px;
  }

  .nudgegoo-intro {
    padding: 142px 0 76px;
  }

  .nudgegoo-intro .section-heading {
    text-align: left;
  }

  .nudgegoo-feature-list {
    margin-top: 28px;
  }

  .nudgegoo-feature,
  .nudgegoo-feature:nth-child(even) {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 32px;
    padding: 54px 6px;
  }

  .nudgegoo-feature-copy,
  .nudgegoo-feature:nth-child(even) .nudgegoo-feature-copy {
    order: 1;
  }

  .nudgegoo-screen,
  .nudgegoo-feature:nth-child(even) .nudgegoo-screen {
    width: min(78%, 270px);
    order: 2;
  }

  .nudgegoo-feature-copy h3 {
    font-size: 27px;
  }

  .nudgegoo-feature-copy p:last-child {
    font-size: 16px;
  }

  .nudgegoo-privacy-note {
    margin-top: 56px;
    padding: 34px 22px;
    border-radius: 26px;
    text-align: left;
  }

  .nudgegoo-support-section {
    padding-top: 70px;
  }

  .app-directory-grid {
    grid-template-columns: 1fr;
  }

  .app-support-hero {
    padding: 48px 0;
  }

  .app-support-hero h1 {
    font-size: 38px;
  }

  .app-support-section {
    padding: 42px 0 64px;
  }

  .faq-item,
  .app-support-aside,
  .app-directory-card {
    padding: 24px 20px;
  }

  .app-directory-card > p:not(.eyebrow) {
    min-height: 0;
  }

  .app-support-aside {
    position: static;
  }

  .privacy-article {
    padding: 28px 20px;
    border-radius: 20px;
    overflow-wrap: anywhere;
  }

  .privacy-article > p:first-child {
    margin-bottom: 28px;
    font-size: 16px;
  }

  .privacy-article section {
    padding-top: 26px;
  }

  .privacy-article section + section {
    margin-top: 24px;
  }

  .privacy-article h2 {
    font-size: 19px;
  }

  .privacy-article ul {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .privacy-aside {
    padding: 24px 20px;
  }
}

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

  .button,
  .skip-link {
    transition: none;
  }
}
