:root {
  --grid-gutter: 25px;
  --grid-max-width: calc(1440px - var(--grid-gutter) * 2);
  --grid-background-color: #f5f5f7;
  --tile-padding-top: 36px;
  --tile-padding-bottom: 40px;
  --tile-padding-left: var(--tile-padding-bottom);
  --tile-padding-right: var(--tile-padding-left);
  --tile-border-radius: 30px;
}
.typography-subsection-headline + .typography-subsection-copy {
  margin-top: 0.3em;
}
.typography-blockquote-copy .footnote-supglyph {
  font-size: 0.5em;
  bottom: 20px;
}
@media only screen and (max-width: 1068px) {
  .typography-blockquote-copy .footnote-supglyph {
    bottom: 15px;
  }
}
@media only screen and (max-width: 734px) {
  .typography-blockquote-copy .footnote-supglyph {
    font-size: 0.7em;
    bottom: 5px;
  }
}
.grid-wrapper {
  background-color: var(--grid-background-color);
}
.grid {
  max-width: var(--grid-max-width);
}
@media only screen and (max-width: 374px) {
  .grid {
    padding-left: 0;
    padding-right: 0;
  }
}
.grid-item {
  background-color: initial;
}
.tile {
  --tile-background-color: white;
  --tile-body-padding-top: 70px;
  --tile-body-padding-bottom: var(--tile-padding-bottom);
  --tile-copy-max-width: 655px;
  border-radius: var(--tile-border-radius);
  display: flex;
}
@media only screen and (max-width: 1068px) {
  .tile {
    --tile-body-padding-top: 60px;
  }
}
@media only screen and (max-width: 734px) {
  .tile {
    --tile-body-padding-top: 50px;
  }
}
.tile.tile-with-overlay {
  /*--tile-overlay-background-color: var(--section-color, #86868b);*/
  --tile-overlay-copy-max-width: 550px;
}
.tile-content {
  /*background-color: var(--tile-background-color); */
  background-color: var(--global-section-background-color-alt);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}
.tile-header {
  padding-top: var(--tile-padding-top);
  padding-left: var(--tile-padding-left);
  padding-right: var(--tile-padding-right);
  max-width: var(--tile-copy-max-width);
}
.tile-headline {
  /*color: var(--tile-overlay-background-color, var(--section-color));*/
}
.tile-body {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: var(--tile-body-padding-top) var(--tile-padding-right)
    var(--tile-body-padding-bottom) var(--tile-padding-left);
}
.tile-body figure {
  width: 100%;
}
.tile-body-blockquote {
  --tile-body-padding-bottom: calc(
    var(--tile-body-padding-top) + var(--tile-padding-bottom)
  );
}
.tile-copy {
  max-width: var(--tile-copy-max-width);
}
.tile-button-wrapper {
  -webkit-tap-highlight-color: transparent;
  z-index: 3;
}
.tile-button {
  z-index: 2;
  background-color: rgba(210, 210, 215, 0.64);
  color: var(--tile-background-color);
  opacity: 0.92;
  transition: background-color 0.66s cubic-bezier(0.66, 0, 0.01, 1) 0.66s,
    color 0.66s cubic-bezier(0.66, 0, 0.01, 1) 0.66s,
    transform 0.66s cubic-bezier(0.66, 0, 0.2, 1), opacity 100ms linear;
}
.tile-button:focus,
.tile-button:hover {
  opacity: 1;
}
.tile-button-text {
  position: absolute;
  width: 100%;
  height: 100%;
}
.tile-icon-alt {
  fill: currentColor;
  width: 50%;
  height: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.tile-overlay {
  z-index: 10;
}
.tile-overlay-content {
  background-color: var(--tile-overlay-background-color);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: var(--tile-padding-top) var(--tile-padding-right)
    var(--tile-padding-bottom) var(--tile-padding-left);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.66s cubic-bezier(0.66, 0, 0.01, 1) 0.66s,
    visibility 0s linear 1.32s;
}
.tile-overlay-header {
  position: absolute;
  max-width: calc(100% - var(--tile-padding-left) - var(--tile-padding-right));
}
.tile-overlay-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  height: 100%;
}
.large-span-12 .tile-overlay-body {
  align-items: center;
}
.tile-overlay-copy,
.tile-overlay-headline {
  color: #fff;
}
.tile-overlay-copy {
  max-width: var(--tile-overlay-copy-max-width);
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.66s cubic-bezier(0.66, 0, 0.2, 1);
}
.tile-overlay-toggle {
  display: none;
}
.tile-overlay-toggle:checked ~ .tile-overlay .tile-button {
  color: var(--tile-overlay-background-color);
  background-color: #fff;
  transform: rotate(45deg);
  transition-delay: 0s;
}
.tile-overlay-toggle:checked ~ .tile-overlay .tile-overlay-content {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.tile-overlay-toggle:checked ~ .tile-overlay .tile-overlay-copy {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.66s;
}
.tile-overlay-toggle:checked ~ .tile-overlay a {
  color: #fff;
}
.tile-overlay-toggle:checked ~ .tile-overlay :focus {
  outline: 2px solid #000;
  outline-offset: 0px;
}
.tile-overlay-toggle:checked ~ .tile-overlay .tile-button-wrapper:focus {
  outline: none;
}
.tile-overlay-toggle:checked
  ~ .tile-overlay
  .tile-button-wrapper:focus
  .tile-button {
  box-shadow: 0 0 0 2px #000;
  outline: none;
}
.tile-body-no-pad-top .tile-body {
  padding-top: 0;
}
.tile-body-no-pad-bottom .tile-body {
  padding-bottom: 0;
}

:root {
  --section-intro-padding-top: 25px;
  --section-intro-padding-bottom: 25px;
  --headline-descender-height: 11px;
  --headline-descender-offset: calc(var(--headline-descender-height) * -1);
  --cta-descender-height: 8px;
  --cta-descender-offset: calc(var(--cta-descender-height) * -1);
  --cta-margin-top: 21px;
}

@media only screen and (max-width: 1068px) {
  :root {
    --section-intro-padding-top: 92px;
    --section-intro-padding-bottom: 35px;
    --headline-descender-height: 8px;
    --cta-descender-height: 7px;
    --cta-margin-top: 23px;
  }
}

@media only screen and (max-width: 734px) {
  :root {
    --section-intro-padding-top: 73px;
    --section-intro-padding-bottom: 30px;
    --headline-descender-height: 7px;
    --cta-margin-top: 20px;
  }
}

.section-intro {
  box-sizing: border-box;
  max-width: calc(var(--grid-max-width) + var(--grid-gutter) * 2);
  margin-left: auto;
  margin-right: auto;
  padding: var(--section-intro-padding-top)
    calc(var(--tile-padding-right) + var(--grid-gutter))
    var(--section-intro-padding-bottom)
    calc(var(--tile-padding-left) + var(--grid-gutter));
}
@media only screen and (max-width: 374px) {
  .section-intro {
    padding-left: var(--tile-padding-left);
    padding-right: var(--tile-padding-right);
  }
}
.section-intro .section-intro-headline {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: var(--headline-descender-offset);
}
.glass-hardware,
glass-container {
  display: block;
  position: relative;
  z-index: 1;
}
.glass-hardware:after,
.glass-hardware:before,
glass-container:after,
glass-container:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.glass-hardware glass-hardware,
.glass-hardware glass-screen,
glass-container glass-hardware,
glass-container glass-screen {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.glass-hardware glass-hardware,
glass-container glass-hardware {
  pointer-events: none;
  z-index: 3;
}
.glass-hardware glass-screen,
glass-container glass-screen {
  z-index: 4;
}
.tile-body {
  padding-bottom: var(--tile-body-padding-top);
}
.tile-button-wrapper {
  bottom: 24px;
  right: 24px;
}
@media only screen and (max-width: 1068px) {
  .tile-button-wrapper {
    bottom: 13px;
    right: 13px;
  }
}
@media only screen and (max-width: 734px) {
  .tile-body-blockquote-fullbleed .tile-body-blockquote {
    padding-top: 0;
  }
  .tile-body-blockquote-fullbleed
    .tile-body-blockquote
    .tile-blockquote
    .typography-blockquote-copy {
    font-size: 19px;
    line-height: 1.4211026316;
    font-weight: 600;
    letter-spacing: 0.012em;
    margin-top: 0.3em;
  }
}
@media only screen and (max-width: 734px) and (max-width: 1068px) {
  .tile-body-blockquote-fullbleed
    .tile-body-blockquote
    .tile-blockquote
    .typography-blockquote-copy {
    font-size: 17px;
    line-height: 1.4705882353;
    font-weight: 600;
    letter-spacing: -0.022em;
  }
}
@media only screen and (min-width: 735px) {
  .tile-body-blockquote-fullbleed .tile-body-blockquote {
    padding-left: 0;
    padding-right: 0;
  }
}
.tile-body-blockquote-fullbleed .grid {
  width: 100%;
}
@media only screen and (max-width: 734px) {
  .tile-body-blockquote-fullbleed .grid {
    --grid-gutter: 0;
  }
}
@media only screen and (min-width: 735px) {
  .tile-body-blockquote-fullbleed .blockquote-content {
    align-self: center;
    position: relative;
  }
}
@media only screen and (min-width: 1069px) {
  .tile-body-blockquote-fullbleed .blockquote-content {
    left: 84px;
    grid-column-start: 1;
    grid-column-end: 6;
  }
}
@media only screen and (min-width: 735px) and (max-width: 1068px) {
  .tile-body-blockquote-fullbleed .blockquote-content {
    left: -20px;
    grid-column-start: 2;
    grid-column-end: 6;
  }
}
@media only screen and (max-width: 734px) {
  .tile-body-blockquote-fullbleed .blockquote-content {
    --typographyBaseline: 6px;
    padding-bottom: calc(
      var(--tile-body-padding-top) - var(--typographyBaseline)
    );
  }
}
.tile-body-blockquote-fullbleed .asset-content {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 735px) {
  .tile-body-blockquote-fullbleed .asset-content {
    grid-column-start: 6;
    grid-column-end: 13;
  }
}
@media only screen and (min-width: 1069px) {
  .tile-body-blockquote-fullbleed .tile-blockquote {
    max-width: 370px;
  }
}
@media only screen and (min-width: 735px) and (max-width: 1068px) {
  .tile-body-blockquote-fullbleed .tile-blockquote {
    max-width: 324px;
    min-width: 250px;
  }
}
.tile .tile-button {
  background-color: #86868b;
  width: 40px;
  height: 40px;
}
@media only screen and (max-width: 1068px) {
  .tile .tile-button {
    width: 30px;
    height: 30px;
  }
}
.tile .tile-button:hover {
  color: #fff;
}
.grid-item.tile-theme-dark .tile-content .tile-body,
.grid-item.tile-theme-dark .tile-content .tile-headline {
  color: #fff;
}
.grid-item.tile-theme-dark .tile-button {
  background-color: #fff;
}
.grid-item.tile-theme-dark .tile-button {
  color: var(--tile-overlay-background-color);
}
.portrait-hardware1.glass-hardware,
glass-container.portrait-hardware1 {
  margin-top: -3px;
}
@media only screen and (max-width: 1068px) {
  .portrait-hardware1.glass-hardware,
  glass-container.portrait-hardware1 {
    margin-top: -1px;
  }
}
@media only screen and (max-width: 734px) {
  .portrait-hardware1.glass-hardware,
  glass-container.portrait-hardware1 {
    margin-top: -2px;
  }
}
.portrait-hardware3.glass-hardware,
glass-container.portrait-hardware3 {
  margin-top: -3px;
}
.grid .tile {
  min-height: 774px;
}
@media only screen and (max-width: 1068px) {
  .grid .tile {
    min-height: 588px;
  }
}
@media only screen and (max-width: 734px) {
  .grid .tile {
    min-height: 460px;
  }
}
@media only screen and (max-width: 374px) {
  .grid .grid-item .tile {
    transform: none;
  }
}
.grid .grid-item:not(.tile-body-no-pad-top) .tile-body {
  --typographyBaseline: 6px;
  padding-top: calc(var(--tile-body-padding-top) - var(--typographyBaseline));
}
.grid .grid-item .tile-body-blockquote {
  box-sizing: initial;
}
.grid .grid-item.large-span-6 .tile-body-blockquote {
  align-self: center;
  max-width: 442px;
}
.grid
  .grid-item.large-span-6:not([class*="medium-span"])
  .tile-body-blockquote {
  align-self: center;
}
@media only screen and (max-width: 1068px) {
  .grid
    .grid-item.large-span-6:not([class*="medium-span"])
    .tile-body-blockquote {
    max-width: 304px;
  }
}
@media only screen and (max-width: 734px) {
  .grid .grid-item.grid-item.small-span-12 .tile-body-blockquote {
    max-width: 243px;
  }
}
.glass-hardware.portrait-hardware1 {
  width: 262px;
  height: 532px;
}
@media only screen and (max-width: 1068px) {
  .glass-hardware.portrait-hardware1 {
    width: 196px;
    height: 396px;
  }
}
@media only screen and (max-width: 734px) {
  .glass-hardware.portrait-hardware1 {
    width: 220px;
    height: 446px;
  }
}
.glass-hardware.portrait-hardware1 glass-hardware {
  width: 262px;
  height: 532px;
  background-size: 262px 532px;
  background-repeat: no-repeat;
  background-image: url(iphone_hardware1__b1mah1tn4gmu_large.png);
}
@media (-webkit-min-device-pixel-ratio: 1.5),
  (min-resolution: 144dpi),
  only screen and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (min-resolution: 1.5dppx) {
  .glass-hardware.portrait-hardware1 glass-hardware {
    background-image: url(iphone_hardware1__b1mah1tn4gmu_large_2x.png);
  }
}
@media only screen and (max-width: 1068px) {
  .glass-hardware.portrait-hardware1 glass-hardware {
    width: 196px;
    height: 396px;
    background-size: 196px 396px;
    background-repeat: no-repeat;
    background-image: url(iphone_hardware1__b1mah1tn4gmu_medium.png);
  }
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (max-width: 1068px) and (min-resolution: 1.5dppx),
  only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
  .glass-hardware.portrait-hardware1 glass-hardware {
    background-image: url(iphone_hardware1__b1mah1tn4gmu_medium_2x.png);
  }
}
@media only screen and (max-width: 734px) {
  .glass-hardware.portrait-hardware1 glass-hardware {
    width: 220px;
    height: 446px;
    background-size: 220px 446px;
    background-repeat: no-repeat;
    background-image: url(iphone_hardware1__b1mah1tn4gmu_small.png);
  }
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (max-width: 734px) and (min-resolution: 1.5dppx),
  only screen and (max-width: 734px) and (min-resolution: 144dpi) {
  .glass-hardware.portrait-hardware1 glass-hardware {
    background-image: url(iphone_hardware1__b1mah1tn4gmu_small_2x.png);
  }
}
.glass-hardware.portrait-hardware1 glass-screen {
  z-index: 2;
  margin-left: 15px;
  margin-top: 14px;
}
@media only screen and (max-width: 1068px) {
  .glass-hardware.portrait-hardware1 glass-screen {
    margin-left: 12px;
    margin-top: 9px;
  }
}
@media only screen and (max-width: 734px) {
  .glass-hardware.portrait-hardware1 glass-screen {
    margin-left: 12px;
    margin-top: 11px;
  }
}
.glass-hardware.portrait-hardware1:before {
  width: 424px;
  height: 622px;
  background-size: 424px 622px;
  background-repeat: no-repeat;
  background-image: url(iphone_shadow1__et9v43yqu12e_large.png);
  left: 0;
  top: 0;
}
@media (-webkit-min-device-pixel-ratio: 1.5),
  (min-resolution: 144dpi),
  only screen and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (min-resolution: 1.5dppx) {
  .glass-hardware.portrait-hardware1:before {
    background-image: url(iphone_shadow1__et9v43yqu12e_large_2x.png);
  }
}
@media only screen and (max-width: 1068px) {
  .glass-hardware.portrait-hardware1:before {
    width: 316px;
    height: 462px;
    background-size: 316px 462px;
    background-repeat: no-repeat;
    background-image: url(iphone_shadow1__et9v43yqu12e_medium.png);
  }
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (max-width: 1068px) and (min-resolution: 1.5dppx),
  only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
  .glass-hardware.portrait-hardware1:before {
    background-image: url(iphone_shadow1__et9v43yqu12e_medium_2x.png);
  }
}
@media only screen and (max-width: 734px) {
  .glass-hardware.portrait-hardware1:before {
    width: 356px;
    height: 522px;
    background-size: 356px 522px;
    background-repeat: no-repeat;
    background-image: url(iphone_shadow1__et9v43yqu12e_small.png);
  }
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (max-width: 734px) and (min-resolution: 1.5dppx),
  only screen and (max-width: 734px) and (min-resolution: 144dpi) {
  .glass-hardware.portrait-hardware1:before {
    background-image: url(iphone_shadow1__et9v43yqu12e_small_2x.png);
  }
}
.glass-hardware.portrait-hardware1 glass-screen {
  border-radius: 30px;
}
@media only screen and (max-width: 1068px) {
  .glass-hardware.portrait-hardware1 glass-screen {
    border-radius: 25px;
  }
}
.glass-hardware.portrait-hardware3 {
  width: 472px;
  height: 958px;
}
@media only screen and (max-width: 1068px) {
  .glass-hardware.portrait-hardware3 {
    width: 298px;
    height: 604px;
  }
}
@media only screen and (max-width: 734px) {
  .glass-hardware.portrait-hardware3 {
    width: 286px;
    height: 580px;
  }
}
.glass-hardware.portrait-hardware3 glass-hardware {
  width: 472px;
  height: 958px;
  background-size: 472px 958px;
  background-repeat: no-repeat;
  background-image: url(iphone_hardware3__cza6mfrdxueu_large.png);
}
@media (-webkit-min-device-pixel-ratio: 1.5),
  (min-resolution: 144dpi),
  only screen and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (min-resolution: 1.5dppx) {
  .glass-hardware.portrait-hardware3 glass-hardware {
    background-image: url(iphone_hardware3__cza6mfrdxueu_large_2x.png);
  }
}
@media only screen and (max-width: 1068px) {
  .glass-hardware.portrait-hardware3 glass-hardware {
    width: 298px;
    height: 604px;
    background-size: 298px 604px;
    background-repeat: no-repeat;
    background-image: url(iphone_hardware3__cza6mfrdxueu_medium.png);
  }
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (max-width: 1068px) and (min-resolution: 1.5dppx),
  only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
  .glass-hardware.portrait-hardware3 glass-hardware {
    background-image: url(iphone_hardware3__cza6mfrdxueu_medium_2x.png);
  }
}
@media only screen and (max-width: 734px) {
  .glass-hardware.portrait-hardware3 glass-hardware {
    width: 286px;
    height: 580px;
    background-size: 286px 580px;
    background-repeat: no-repeat;
    background-image: url(iphone_hardware3__cza6mfrdxueu_small.png);
  }
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (max-width: 734px) and (min-resolution: 1.5dppx),
  only screen and (max-width: 734px) and (min-resolution: 144dpi) {
  .glass-hardware.portrait-hardware3 glass-hardware {
    background-image: url(iphone_hardware3__cza6mfrdxueu_small_2x.png);
  }
}
.glass-hardware.portrait-hardware3 glass-screen {
  z-index: 2;
  margin-left: 25px;
  margin-top: 24px;
}
@media only screen and (max-width: 1068px) {
  .glass-hardware.portrait-hardware3 glass-screen {
    margin-left: 16px;
    margin-top: 14px;
  }
}
@media only screen and (max-width: 734px) {
  .glass-hardware.portrait-hardware3 glass-screen {
    margin-left: 17px;
    margin-top: 15px;
  }
}
.glass-hardware.portrait-hardware3:before {
  width: 764px;
  height: 1122px;
  background-size: 764px 1122px;
  background-repeat: no-repeat;
  background-image: url(iphone_shadow3__e743lfe5f9ym_large.png);
  left: 0;
  top: 0;
}
@media (-webkit-min-device-pixel-ratio: 1.5),
  (min-resolution: 144dpi),
  only screen and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (min-resolution: 1.5dppx) {
  .glass-hardware.portrait-hardware3:before {
    background-image: url(iphone_shadow3__e743lfe5f9ym_large_2x.png);
  }
}
@media only screen and (max-width: 1068px) {
  .glass-hardware.portrait-hardware3:before {
    width: 482px;
    height: 706px;
    background-size: 482px 706px;
    background-repeat: no-repeat;
    background-image: url(iphone_shadow3__e743lfe5f9ym_medium.png);
  }
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (max-width: 1068px) and (min-resolution: 1.5dppx),
  only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
  .glass-hardware.portrait-hardware3:before {
    background-image: url(iphone_shadow3__e743lfe5f9ym_medium_2x.png);
  }
}
@media only screen and (max-width: 734px) {
  .glass-hardware.portrait-hardware3:before {
    width: 462px;
    height: 676px;
    background-size: 462px 676px;
    background-repeat: no-repeat;
    background-image: url(iphone_shadow3__e743lfe5f9ym_small.png);
  }
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (max-width: 734px) and (min-resolution: 1.5dppx),
  only screen and (max-width: 734px) and (min-resolution: 144dpi) {
  .glass-hardware.portrait-hardware3:before {
    background-image: url(iphone_shadow3__e743lfe5f9ym_small_2x.png);
  }
}
.glass-hardware.portrait-hardware3 glass-screen {
  border-radius: 30px;
}
.image-shared-privacy-lock {
  width: 64px;
  height: 82px;
  background-size: 64px 82px;
  background-repeat: no-repeat;
  background-image: url(privacy_lock__dhui3ik5veye_large.png);
  margin-bottom: 24px;
}
@media (-webkit-min-device-pixel-ratio: 1.5),
  (min-resolution: 144dpi),
  only screen and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (min-resolution: 1.5dppx) {
  .image-shared-privacy-lock {
    background-image: url(privacy_lock__dhui3ik5veye_large_2x.png);
  }
}
@media only screen and (max-width: 1068px) {
  .image-shared-privacy-lock {
    width: 46px;
    height: 58px;
    background-size: 46px 58px;
    background-repeat: no-repeat;
    background-image: url(privacy_lock__dhui3ik5veye_medium.png);
  }
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (max-width: 1068px) and (min-resolution: 1.5dppx),
  only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
  .image-shared-privacy-lock {
    background-image: url(privacy_lock__dhui3ik5veye_medium_2x.png);
  }
}
@media only screen and (max-width: 734px) {
  .image-shared-privacy-lock {
    width: 46px;
    height: 58px;
    background-size: 46px 58px;
    background-repeat: no-repeat;
    background-image: url(privacy_lock__dhui3ik5veye_small.png);
  }
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (max-width: 734px) and (min-resolution: 1.5dppx),
  only screen and (max-width: 734px) and (min-resolution: 144dpi) {
  .image-shared-privacy-lock {
    background-image: url(privacy_lock__dhui3ik5veye_small_2x.png);
  }
}
@media only screen and (min-width: 735px) and (max-width: 1068px) {
  .section-games .grid-item-journaling-app .blockquote-content {
    grid-column-end: 7;
  }
}
@media only screen and (min-width: 1069px) {
  .section-games .grid-item-journaling-app .tile-blockquote {
    max-width: 400px;
  }
}
@media only screen and (min-width: 1069px) and (max-width: 1249px) {
  .section-games .grid-item-journaling-app .tile-blockquote {
    max-width: 370px;
  }
}
@media only screen and (min-width: 735px) and (max-width: 1068px) {
  .section-games .grid-item-journaling-app .tile-blockquote {
    max-width: 310px;
  }
}
@media only screen and (min-width: 735px) and (max-width: 1068px) {
  .section-games .grid-item-journaling-app .asset-content {
    grid-column-start: 7;
  }
}
.section-games .grid-item-journaling-app glass-screen {
  width: 422px;
  height: 914px;
  background-size: 422px 914px;
  background-repeat: no-repeat;
  background-image: url(journaling_app_screen__e9aa88o2bm6a_large.jpg);
}
@media (-webkit-min-device-pixel-ratio: 1.5),
  (min-resolution: 144dpi),
  only screen and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (min-resolution: 1.5dppx) {
  .section-games .grid-item-journaling-app glass-screen {
    background-image: url(journaling_app_screen__e9aa88o2bm6a_large_2x.jpg);
  }
}
@media only screen and (max-width: 1068px) {
  .section-games .grid-item-journaling-app glass-screen {
    width: 266px;
    height: 576px;
    background-size: 266px 576px;
    background-repeat: no-repeat;
    background-image: url(journaling_app_screen__e9aa88o2bm6a_medium.jpg);
  }
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (max-width: 1068px) and (min-resolution: 1.5dppx),
  only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
  .section-games .grid-item-journaling-app glass-screen {
    background-image: url(journaling_app_screen__e9aa88o2bm6a_medium_2x.jpg);
  }
}
@media only screen and (max-width: 734px) {
  .section-games .grid-item-journaling-app glass-screen {
    width: 254px;
    height: 552px;
    background-size: 254px 552px;
    background-repeat: no-repeat;
    background-image: url(journaling_app_screen__e9aa88o2bm6a_small.jpg);
  }
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (max-width: 734px) and (min-resolution: 1.5dppx),
  only screen and (max-width: 734px) and (min-resolution: 144dpi) {
  .section-games .grid-item-journaling-app glass-screen {
    background-image: url(journaling_app_screen__e9aa88o2bm6a_small_2x.jpg);
  }
}
.section-games .grid-item-journaling-app .glass-hardware {
  height: 700px;
  margin-top: 4px;
}
@media only screen and (max-width: 1068px) {
  .section-games .grid-item-journaling-app .glass-hardware {
    margin-top: 0px;
    height: 450px;
  }
}
@media only screen and (max-width: 374px) {
  .section-games .grid-item-journaling-app .glass-hardware {
    margin-left: -14px;
  }
}
@media only screen and (max-width: 734px) {
  .section-games .grid-item-privacy .tile {
    min-height: 634px;
    min-height: 680px;
  }
}
.section-games .grid-item-privacy .tile-content {
  background: linear-gradient(135deg, #1d1d1f, #767676);
}
.section-games .grid-item-privacy .tile-body {
  padding-top: 0px;
}
.section-games .grid-item-privacy .tile-button {
  color: #000;
}
.section-games .grid-item-suggestions glass-screen {
  width: 234px;
  height: 506px;
  background-size: 234px 506px;
  background-repeat: no-repeat;
  background-image: url(suggestions_screen__ffiqacbyaday_large.jpg);
}
@media (-webkit-min-device-pixel-ratio: 1.5),
  (min-resolution: 144dpi),
  only screen and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (min-resolution: 1.5dppx) {
  .section-games .grid-item-suggestions glass-screen {
    background-image: url(suggestions_screen__ffiqacbyaday_large_2x.jpg);
  }
}
@media only screen and (max-width: 1068px) {
  .section-games .grid-item-suggestions glass-screen {
    width: 174px;
    height: 378px;
    background-size: 174px 378px;
    background-repeat: no-repeat;
    background-image: url(suggestions_screen__ffiqacbyaday_medium.jpg);
  }
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (max-width: 1068px) and (min-resolution: 1.5dppx),
  only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
  .section-games .grid-item-suggestions glass-screen {
    background-image: url(suggestions_screen__ffiqacbyaday_medium_2x.jpg);
  }
}
@media only screen and (max-width: 734px) {
  .section-games .grid-item-suggestions glass-screen {
    width: 196px;
    height: 424px;
    background-size: 196px 424px;
    background-repeat: no-repeat;
    background-image: url(suggestions_screen__ffiqacbyaday_small.jpg);
  }
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (max-width: 734px) and (min-resolution: 1.5dppx),
  only screen and (max-width: 734px) and (min-resolution: 144dpi) {
  .section-games .grid-item-suggestions glass-screen {
    background-image: url(suggestions_screen__ffiqacbyaday_small_2x.jpg);
  }
}
